aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/glibc/include/endian.h
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:52 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 18:24:51 -0500
commitf5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch)
tree93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/glibc/include/endian.h
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/glibc/include/endian.h')
-rw-r--r--lib/mlibc/options/glibc/include/endian.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/lib/mlibc/options/glibc/include/endian.h b/lib/mlibc/options/glibc/include/endian.h
deleted file mode 100644
index 00d5ee1..0000000
--- a/lib/mlibc/options/glibc/include/endian.h
+++ /dev/null
@@ -1,54 +0,0 @@
-#ifndef _ENDIAN_H
-#define _ENDIAN_H
-
-#include <byteswap.h>
-
-#ifdef __GNUC__
-# define BYTE_ORDER __BYTE_ORDER__
-# define LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
-# define BIG_ENDIAN __ORDER_BIG_ENDIAN__
-# define PDP_ENDIAN __ORDER_PDP_ENDIAN__
-
-# define __BYTE_ORDER __BYTE_ORDER__
-#ifndef __LITTLE_ENDIAN // Linux kernel headers define this already
-# define __LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
-#endif
-# define __BIG_ENDIAN __ORDER_BIG_ENDIAN__
-# define __PDP_ENDIAN __ORDER_PDP_ENDIAN__
-#else
-# error "Unsupported compiler"
-#endif
-
-#if BYTE_ORDER == LITTLE_ENDIAN
-# define htobe16(x) __bswap_16(x)
-# define htole16(x) (uint16_t)(x)
-# define be16toh(x) __bswap_16(x)
-# define le16toh(x) (uint16_t)(x)
-
-# define htobe32(x) __bswap_32(x)
-# define htole32(x) (uint32_t)(x)
-# define be32toh(x) __bswap_32(x)
-# define le32toh(x) (uint32_t)(x)
-
-# define htobe64(x) __bswap_64(x)
-# define htole64(x) (uint64_t)(x)
-# define be64toh(x) __bswap_64(x)
-# define le64toh(x) (uint64_t)(x)
-#else
-# define htobe16(x) (uint16_t)(x)
-# define htole16(x) __bswap_16(x)
-# define be16toh(x) (uint16_t)(x)
-# define le16toh(x) __bswap_16(x)
-
-# define htobe32(x) (uint32_t)(x)
-# define htole32(x) __bswap_32(x)
-# define be32toh(x) (uint32_t)(x)
-# define le32toh(x) __bswap_32(x)
-
-# define htobe64(x) (uint64_t)(x)
-# define htole64(x) __bswap_64(x)
-# define be64toh(x) (uint64_t)(x)
-# define le64toh(x) __bswap_64(x)
-#endif
-
-#endif // _ENDIAN_H