summaryrefslogtreecommitdiff
path: root/PACE/pace/posix/inet.inl
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/posix/inet.inl')
-rw-r--r--PACE/pace/posix/inet.inl69
1 files changed, 0 insertions, 69 deletions
diff --git a/PACE/pace/posix/inet.inl b/PACE/pace/posix/inet.inl
deleted file mode 100644
index 4df3dc42144..00000000000
--- a/PACE/pace/posix/inet.inl
+++ /dev/null
@@ -1,69 +0,0 @@
-/* $Id$ -*- C -*-
-
- * =============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * inet.inl
- *
- * = AUTHOR
- * Luther Baker
- *
- * ============================================================================= */
-
-
-#include "pace/sys/socket.h"
-#include "pace/sys/types.h"
-#include "pace/netinet/in.h"
-
-
-PACE_INLINE
-unsigned long
-pace_inet_addr (const char * cp)
-{
- return inet_addr (cp);
-}
-
-PACE_INLINE
-unsigned long
-pace_inet_network (const char * cp)
-{
- return inet_network (cp);
-}
-
-PACE_INLINE
-struct in_addr
-pace_inet_makeaddr (const int net, const int lna)
-{
- return inet_makeaddr (net, lna);
-}
-
-PACE_INLINE
-int
-pace_inet_lnaof (const struct in_addr in)
-{
- return inet_lnaof (in);
-}
-
-PACE_INLINE
-int
-pace_inet_netof (const struct in_addr in)
-{
- return inet_netof (in);
-}
-
-PACE_INLINE
-char *
-pace_inet_ntoa (const struct in_addr in)
-{
- return inet_ntoa (in);
-}
-
-PACE_INLINE
-int
-pace_inet_aton (const char * str, struct in_addr * addr)
-{
- return inet_aton (str, addr);
-}