summaryrefslogtreecommitdiffstats
path: root/sys/ia64/include
diff options
context:
space:
mode:
authormike <mike@FreeBSD.org>2002-04-10 14:39:14 +0000
committermike <mike@FreeBSD.org>2002-04-10 14:39:14 +0000
commit7fb662578d64e154082914adb1d39ba8abfb3f8a (patch)
treeed4fc08fc630dc7ff1b6602a205ea15dbbf66da1 /sys/ia64/include
parent509170f4fdd4981277ef3ceeb7b316809aef7646 (diff)
downloadFreeBSD-src-7fb662578d64e154082914adb1d39ba8abfb3f8a.zip
FreeBSD-src-7fb662578d64e154082914adb1d39ba8abfb3f8a.tar.gz
Add manifest constants: _LITTLE_ENDIAN, _BIG_ENDIAN, _PDP_ENDIAN, and
_BYTE_ORDER. These are far more useful than their non-underscored equivalents as these can be used in restricted namespace environments. Mark the non-underscored variants as deprecated.
Diffstat (limited to 'sys/ia64/include')
-rw-r--r--sys/ia64/include/endian.h21
1 files changed, 15 insertions, 6 deletions
diff --git a/sys/ia64/include/endian.h b/sys/ia64/include/endian.h
index 826fa54..5ae1ac5 100644
--- a/sys/ia64/include/endian.h
+++ b/sys/ia64/include/endian.h
@@ -47,17 +47,26 @@
#define _QUAD_HIGHWORD 1
#define _QUAD_LOWWORD 0
-#ifndef _POSIX_SOURCE
/*
* Definitions for byte order, according to byte significance from low
* address to high.
*/
-#define LITTLE_ENDIAN 1234 /* LSB first: i386, vax */
-#define BIG_ENDIAN 4321 /* MSB first: 68000, ibm, net */
-#define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long */
+#define _LITTLE_ENDIAN 1234 /* LSB first: i386, vax */
+#define _BIG_ENDIAN 4321 /* MSB first: 68000, ibm, net */
+#define _PDP_ENDIAN 3412 /* LSB first in word, MSW first in long */
-#define BYTE_ORDER LITTLE_ENDIAN
-#endif /* !_POSIX_SOURCE */
+#define _BYTE_ORDER _LITTLE_ENDIAN
+
+/*
+ * Deprecated variants that don't have enough underscores to be useful in more
+ * strict namespaces.
+ */
+#if __BSD_VISIBLE
+#define LITTLE_ENDIAN _LITTLE_ENDIAN
+#define BIG_ENDIAN _BIG_ENDIAN
+#define PDP_ENDIAN _PDP_ENDIAN
+#define BYTE_ORDER _BYTE_ORDER
+#endif
#ifdef __GNUC__
OpenPOWER on IntegriCloud