• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*	$OpenBSD: endian.h,v 1.3 2005/12/13 00:35:23 millert Exp $	*/
2 
3 #ifdef __ARMEB__
4 #define _BYTE_ORDER _BIG_ENDIAN
5 #else
6 #define _BYTE_ORDER _LITTLE_ENDIAN
7 #endif
8 #define	__STRICT_ALIGNMENT
9 #include <sys/types.h>
10 #include <sys/endian.h>
11