home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / include / bytesex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-14  |  275 b   |  15 lines

  1. #ifndef _BYTESEX_H
  2. #define _BYTESEX_H
  3.  
  4. #undef __BYTE_ORDER
  5.  
  6. #if defined(__i386__) || defined(__arm__)
  7. # define __BYTE_ORDER    1234
  8. #elif defined(__mc68000__)
  9. # define __BYTE_ORDER    4321
  10. #else
  11. # error architecture not supported by Linux C library
  12. #endif
  13.  
  14. #endif /* _BYTESEX_H */
  15.