summaryrefslogtreecommitdiffstats
path: root/libc/arch-arm/include/endian.h
blob: 04204ed4c8989fbb0db8e3233498d0d9c7e35671 (plain)
1
2
3
4
5
6
7
8
9
10
/*	$OpenBSD: endian.h,v 1.3 2005/12/13 00:35:23 millert Exp $	*/

#ifdef __ARMEB__
#define _BYTE_ORDER _BIG_ENDIAN
#else
#define _BYTE_ORDER _LITTLE_ENDIAN
#endif
#define	__STRICT_ALIGNMENT
#include <sys/types.h>
#include <sys/endian.h>