summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/endian.h
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2003-03-14 17:57:15 +0000
committerMystery Man <unknown@mandriva.org>2003-03-14 17:57:15 +0000
commit65a06c77cbff9bc84b7be08103b1a483cda9d9d2 (patch)
tree6e38e70826700508de0018ad460ea43fcdef4bee /mdk-stage1/dietlibc/include/endian.h
parent9a988dcb14af8d6af00781d73904ad82a0c9b422 (diff)
downloaddrakx-backup-do-not-use-9_1_24mdk.tar
drakx-backup-do-not-use-9_1_24mdk.tar.gz
drakx-backup-do-not-use-9_1_24mdk.tar.bz2
drakx-backup-do-not-use-9_1_24mdk.tar.xz
drakx-backup-do-not-use-9_1_24mdk.zip
This commit was manufactured by cvs2svn to create tag 'V9_1_24mdk'.V9_1_24mdk
Diffstat (limited to 'mdk-stage1/dietlibc/include/endian.h')
-rw-r--r--mdk-stage1/dietlibc/include/endian.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/mdk-stage1/dietlibc/include/endian.h b/mdk-stage1/dietlibc/include/endian.h
deleted file mode 100644
index 463c24fff..000000000
--- a/mdk-stage1/dietlibc/include/endian.h
+++ /dev/null
@@ -1,43 +0,0 @@
-#ifndef _ENDIAN_H
-#define _ENDIAN_H
-
-#define __LITTLE_ENDIAN 1234
-#define __BIG_ENDIAN 4321
-
-#ifdef __i386__
-#define __BYTE_ORDER __LITTLE_ENDIAN
-#define __FLOAT_WORD_ORDER __BYTE_ORDER
-#endif
-
-#ifdef __sparc__
-#define __BYTE_ORDER __BIG_ENDIAN
-#define __FLOAT_WORD_ORDER __BYTE_ORDER
-#endif
-
-#ifdef __mips__
-#ifdef __MIPSEB__
-#define __BIG_ENDIAN__
-#endif
-#endif
-
-#ifndef __BYTE_ORDER
-#ifdef __BIG_ENDIAN__
-#define __BYTE_ORDER __BIG_ENDIAN
-#define __FLOAT_WORD_ORDER __BYTE_ORDER
-#else
-#define __BYTE_ORDER __LITTLE_ENDIAN
-#define __FLOAT_WORD_ORDER __BYTE_ORDER
-#endif
-#endif
-
-#define LITTLE_ENDIAN __LITTLE_ENDIAN
-#define BIG_ENDIAN __BIG_ENDIAN
-#define BYTE_ORDER __BYTE_ORDER
-
-#if __BYTE_ORDER == __LITTLE_ENDIAN
-# define __LONG_LONG_PAIR(HI, LO) LO, HI
-#elif __BYTE_ORDER == __BIG_ENDIAN
-# define __LONG_LONG_PAIR(HI, LO) HI, LO
-#endif
-
-#endif