diff options
Diffstat (limited to 'sysdeps/generic/bits/endian.h')
-rw-r--r-- | sysdeps/generic/bits/endian.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sysdeps/generic/bits/endian.h b/sysdeps/generic/bits/endian.h new file mode 100644 index 0000000000..45afd4ae47 --- /dev/null +++ b/sysdeps/generic/bits/endian.h @@ -0,0 +1,13 @@ +/* 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 + +#error Machine byte order unknown. |