summaryrefslogtreecommitdiff
path: root/bsd-inet_ntoa.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-08-16 10:35:58 +1000
committerDamien Miller <djm@mindrot.org>2000-08-16 10:35:58 +1000
commit11fa2cc3839b1e7fed1d85aa1158cce4d498bc58 (patch)
treef432a585240e930f3accd4aa2ab43ad1835f8ea5 /bsd-inet_ntoa.h
parent0da2eaaf06e8d05862dcce34cc8c7d1a0740de7c (diff)
- (djm) Replacement for inet_ntoa for Irix (which breaks on gcc)
- (djm) Fix strerror replacement for old SunOS. Based on patch from Charles Levert <charles@comm.polymtl.ca> - (djm) Seperate arc4random into seperate file and use OpenSSL's RC4 implementation.
Diffstat (limited to 'bsd-inet_ntoa.h')
-rw-r--r--bsd-inet_ntoa.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/bsd-inet_ntoa.h b/bsd-inet_ntoa.h
new file mode 100644
index 000000000..e3d48e4af
--- /dev/null
+++ b/bsd-inet_ntoa.h
@@ -0,0 +1,10 @@
1#ifndef _BSD_INET_NTOA_H
2#define _BSD_INET_NTOA_H
3
4#include "config.h"
5
6#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
7char *inet_ntoa(struct in_addr in);
8#endif /* defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA) */
9
10#endif /* _BSD_INET_NTOA_H */