make cross_getch invisible
the cross_getch function will be called from the JNI Wrapper
and must not be visible to others
committer: Markus Bröker <mbroeker@largo.homelinux.org>
/**
* libtest/main.c
* Copyright (C) 2008 Markus Broeker
*/
void func1 ();
void func2 ();
int main (int argc, char **argv)
{
func1 ();
func2 ();
return 0;
}