mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
10 lines
215 B
C
10 lines
215 B
C
#ifndef _ENDIAN_H
|
|
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
|
|
#endif
|
|
|
|
#ifdef __CSKYBE__
|
|
# error "Big endian not supported for C-SKY."
|
|
#else
|
|
# define __BYTE_ORDER __LITTLE_ENDIAN
|
|
#endif
|