12 lines
189 B
C
12 lines
189 B
C
|
/*
|
||
|
arpa/inet.h
|
||
|
*/
|
||
|
|
||
|
#ifndef _ARPA__INET_H
|
||
|
#define _ARPA__INET_H
|
||
|
|
||
|
/* Open Group Base Specifications Issue 6 (not complete): */
|
||
|
char *inet_ntoa(struct in_addr in);
|
||
|
|
||
|
#endif /* _ARPA__INET_H */
|