blob: 164f9e4d785c16f3ff90f0ecf92f8e70dbef796c [file] [log] [blame]
/* The Nios II architecture has selectable endianness. */
#ifndef _ENDIAN_H
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
#endif
#ifdef __nios2_big_endian__
# define __BYTE_ORDER __BIG_ENDIAN
#endif
#ifdef __nios2_little_endian__
# define __BYTE_ORDER __LITTLE_ENDIAN
#endif