23 lines
302 B
C
23 lines
302 B
C
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
|
|
//XXX FIXME
|
|
in_addr_t inet_addr(const char *cp)
|
|
{
|
|
return (in_addr_t)NULL;
|
|
}
|
|
|
|
// XXX FIXME
|
|
//int usleep(useconds_t us)
|
|
//{
|
|
// return 0;
|
|
//}
|
|
//
|
|
//
|
|
//struct hostent *gethostbyname(const char *name)
|
|
//{
|
|
// return NULL;
|
|
//}
|