| 65 /* fcntl.h */ |
65 /* fcntl.h */ |
| 66 extern int wgaim_fcntl(int socket, int command, int val); |
66 extern int wgaim_fcntl(int socket, int command, int val); |
| 67 #define fcntl( fd, command, val ) \ |
67 #define fcntl( fd, command, val ) \ |
| 68 wgaim_fcntl( fd, command, val ) |
68 wgaim_fcntl( fd, command, val ) |
| 69 |
69 |
| 70 #define open( args... ) _open( ## args ) |
70 #define open( args... ) _open( args ) |
| 71 |
71 |
| 72 /* arpa/inet.h */ |
72 /* arpa/inet.h */ |
| 73 extern int wgaim_inet_aton(const char *name, struct in_addr *addr); |
73 extern int wgaim_inet_aton(const char *name, struct in_addr *addr); |
| 74 #define inet_aton( name, addr ) \ |
74 #define inet_aton( name, addr ) \ |
| 75 wgaim_inet_aton( name, addr ) |
75 wgaim_inet_aton( name, addr ) |