diff options
Diffstat (limited to 'crypto/openssh/openbsd-compat/inet_ntop.h')
-rw-r--r-- | crypto/openssh/openbsd-compat/inet_ntop.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crypto/openssh/openbsd-compat/inet_ntop.h b/crypto/openssh/openbsd-compat/inet_ntop.h new file mode 100644 index 0000000..c774df9 --- /dev/null +++ b/crypto/openssh/openbsd-compat/inet_ntop.h @@ -0,0 +1,13 @@ +/* $Id: inet_ntop.h,v 1.4 2001/08/09 00:56:53 mouring Exp $ */ + +#ifndef _BSD_INET_NTOP_H +#define _BSD_INET_NTOP_H + +#include "config.h" + +#ifndef HAVE_INET_NTOP +const char * +inet_ntop(int af, const void *src, char *dst, size_t size); +#endif /* !HAVE_INET_NTOP */ + +#endif /* _BSD_INET_NTOP_H */ |