endian.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* ARM is (usually) little-endian but with a big-endian FPU.  */
  2. #ifndef _ENDIAN_H
  3. # error "Never use <bits/endian.h> directly; include <endian.h> instead."
  4. #endif
  5. #ifdef __ARMEB__
  6. #define __BYTE_ORDER __BIG_ENDIAN
  7. #else
  8. #define __BYTE_ORDER __LITTLE_ENDIAN
  9. #endif
  10. #define __FLOAT_WORD_ORDER __BIG_ENDIAN