summaryrefslogtreecommitdiff
path: root/include/arpa/inet.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/arpa/inet.h')
-rw-r--r--include/arpa/inet.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/arpa/inet.h b/include/arpa/inet.h
new file mode 100644
index 000000000..cf4cd3275
--- /dev/null
+++ b/include/arpa/inet.h
@@ -0,0 +1,12 @@
+#ifndef __ARPA_INET_H
+#define __ARPA_INET_H
+
+#include <netinet/in.h>
+
+int inet_aton(const char *cp, struct in_addr *inp);
+
+unsigned long int inet_addr(const char *cp);
+
+char *inet_ntoa(struct in_addr in);
+
+#endif