blob: 835042a7ac1fb508cdb031a840a89d59c97dda7c [file] [log] [blame]
xf.libfc6e712025-02-07 01:54:34 -08001/* Set endianness for tile. */
2
3#ifndef _ENDIAN_H
4# error "Never use <bits/endian.h> directly; include <endian.h> instead."
5#endif
6
7#if defined __BIG_ENDIAN__
8# define __BYTE_ORDER __BIG_ENDIAN
9#else
10# define __BYTE_ORDER __LITTLE_ENDIAN
11#endif