minix/common/include/net/gen/inet.h
Gianluca Guida 05480c229a Move network includes and lib.h into common/include subdir.
This patch moves further includes (the network part and lib.h) in common/.
It is the last part to get the netbsd libc to compile under minix. Further moves will be needed as we get the netbsd libc to compile minix itself.

Also, this patch add #ifndef's to termios.h, as it create problems with netbsd's namespace.h.
2011-02-14 12:49:18 +00:00

16 lines
365 B
C

/*
server/ip/gen/inet.h
*/
#ifndef __SERVER__IP__GEN__INET_H__
#define __SERVER__IP__GEN__INET_H__
#include <net/gen/in.h>
ipaddr_t inet_addr _ARGS(( const char *addr ));
ipaddr_t inet_network _ARGS(( const char *addr ));
char *inet_ntoa _ARGS(( ipaddr_t addr ));
int inet_aton _ARGS(( const char *cp, ipaddr_t *pin ));
#endif /* __SERVER__IP__GEN__INET_H__ */