xref: /titanic_41/usr/src/cmd/ssh/include/inet_ntoa.h (revision fcf3ce441efd61da9bb2884968af01cb7c1452cc)
1 /* $Id: inet_ntoa.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
2 
3 #ifndef	_INET_NTOA_H
4 #define	_INET_NTOA_H
5 
6 #pragma ident	"%Z%%M%	%I%	%E% SMI"
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 #include "config.h"
13 
14 #if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
15 char *inet_ntoa(struct in_addr in);
16 #endif /* defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA) */
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif /* _INET_NTOA_H */
23