home *** CD-ROM | disk | FTP | other *** search
- /*
- * endiandef.h defines for local host byte sex.
- * Copyright © 1992 Niklas Röjemo
- */
- #ifndef __ENDIAN_H
- #define __ENDIAN_H
-
- #include "endiandef.h"
-
- #ifdef LITTLEENDIAN
-
- #define armword(x) (x)
- #define ourword(x) (x)
-
- #else
-
- unsigned armword(unsigned val);
- unsigned ourword(unsigned val);
-
- #endif
- #endif /* __ENDIAN_H */
-