root/include/asm-m68k/byteorder.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _M68K_BYTEORDER_H
   2 #define _M68K_BYTEORDER_H
   3 
   4 #ifdef __KERNEL__
   5 #define __BIG_ENDIAN
   6 #endif
   7 #define __BIG_ENDIAN_BITFIELD
   8 
   9 #define ntohl(x) x
  10 #define ntohs(x) x
  11 #define htonl(x) x
  12 #define htons(x) x
  13 
  14 #endif

/* [previous][next][first][last][top][bottom][index][help] */