diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-30 15:45:38 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-30 15:45:38 -0500 |
| commit | bafccb2f57ac1a1852be2d6aafe33cf02d1630c1 (patch) | |
| tree | a6164b42b37b941cb64bbc3db8af7a1daf381ace /src/arpa/inet/htonl.c | |
| parent | 910a86c095b6d7311d73fa88a632aa9b673243b2 (diff) | |
update dependencies
Diffstat (limited to 'src/arpa/inet/htonl.c')
| -rw-r--r-- | src/arpa/inet/htonl.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/arpa/inet/htonl.c b/src/arpa/inet/htonl.c deleted file mode 100644 index 23522d9f..00000000 --- a/src/arpa/inet/htonl.c +++ /dev/null @@ -1,21 +0,0 @@ -#if 0 - -#include <arpa/inet.h> - -uint32_t htonl(uint32_t hostlong) -{ - union { - uint32_t u; - unsigned char c[sizeof(uint32_t)]; - } u; - - u.c[0] = (hostlong >> 24) & 0xff; - u.c[1] = (hostlong >> 16) & 0xff; - u.c[2] = (hostlong >> 8) & 0xff; - u.c[3] = (hostlong) & 0xff; - - return u.u; -} - - -#endif |
