mirror of
https://github.com/Echelon9/cxbx-shogun.git
synced 2025-04-02 10:41:47 -04:00
14 lines
574 B
C
14 lines
574 B
C
/* This file should define __BYTE_ORDER as appropriate for the machine
|
|
in question. See string/endian.h for how to define it.
|
|
|
|
If only the stub bits/endian.h applies to a particular configuration,
|
|
bytesex.h is generated by running a program on the host machine.
|
|
So if cross-compiling to a machine with a different byte order,
|
|
the bits/endian.h file for that machine must exist. */
|
|
|
|
#ifndef _ENDIAN_H
|
|
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
|
|
#endif
|
|
|
|
#define __BYTE_ORDER __LITTLE_ENDIAN
|
|
//#error Machine byte order unknown.
|