struct hostent has no longer a member h_addr
Current netdb.h lacks support for the old h_addr pointer without
special USE_GNU defines...
committer: Markus Bröker <mbroeker@largo.homelinux.org>
import java.io.*;
public class Getch {
public static void main (String args[]) {
int c;
System.out.println ("Press q or ESCAPE to quit");
for (;;) {
c = Console.getch ();
switch (c) {
case 27:
case 'q':
System.exit (0);
break;
default:
System.out.printf ("KEY: %c (%d)\n", c, c);
break;
}
}
};
}