Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/linux/machine/i386/include/endian.h')
-rw-r--r--newlib/libc/sys/linux/machine/i386/include/endian.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/newlib/libc/sys/linux/machine/i386/include/endian.h b/newlib/libc/sys/linux/machine/i386/include/endian.h
index f5a8aafc7..aa9cd90a3 100644
--- a/newlib/libc/sys/linux/machine/i386/include/endian.h
+++ b/newlib/libc/sys/linux/machine/i386/include/endian.h
@@ -47,22 +47,11 @@
* Definitions for byte order, according to byte significance from low
* address to high.
*/
-
-#ifndef LITTLE_ENDIAN
#define LITTLE_ENDIAN 1234 /* LSB first: i386, vax */
-#endif
-
-#ifndef BIG_ENDIAN
#define BIG_ENDIAN 4321 /* MSB first: 68000, ibm, net */
-#endif
-
-#ifndef PDP_ENDIAN
#define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long */
-#endif
-#ifndef BYTE_ORDER
#define BYTE_ORDER LITTLE_ENDIAN
-#endif
#ifndef KERNEL
#include <sys/cdefs.h>