diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:52 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 18:24:51 -0500 |
commit | f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch) | |
tree | 93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/posix/include/arpa | |
parent | bd5969fc876a10b18613302db7087ef3c40f18e1 (diff) |
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/posix/include/arpa')
-rw-r--r-- | lib/mlibc/options/posix/include/arpa/inet.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/lib/mlibc/options/posix/include/arpa/inet.h b/lib/mlibc/options/posix/include/arpa/inet.h deleted file mode 100644 index 599987e..0000000 --- a/lib/mlibc/options/posix/include/arpa/inet.h +++ /dev/null @@ -1,46 +0,0 @@ -#ifndef _ARPA_INET_H -#define _ARPA_INET_H - -#include <netinet/in.h> -#include <stdint.h> -#include <sys/socket.h> - -#ifdef __cplusplus -extern "C" { -#endif - -#ifndef __MLIBC_ABI_ONLY - -uint32_t htonl(uint32_t); -uint16_t htons(uint16_t); -uint32_t ntohl(uint32_t); -uint16_t ntohs(uint16_t); - -// ---------------------------------------------------------------------------- -// IPv4 address manipulation. -// ---------------------------------------------------------------------------- - -in_addr_t inet_addr(const char *); -char *inet_ntoa(struct in_addr); - -// GLIBC replacement for inet_addr(). -int inet_aton(const char *, struct in_addr *); - -// ---------------------------------------------------------------------------- -// Generic IP address manipulation. -// ---------------------------------------------------------------------------- -const char *inet_ntop(int, const void *__restrict, char *__restrict, - socklen_t) __attribute__((__nonnull__(3))); -int inet_pton(int, const char *__restrict, void *__restrict); - -struct in_addr inet_makeaddr(in_addr_t net, in_addr_t host); -in_addr_t inet_netof(struct in_addr in); - -#endif /* !__MLIBC_ABI_ONLY */ - -#ifdef __cplusplus -} -#endif - -#endif // _ARPA_INET_H - |