mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-26 11:49:19 +00:00
12 lines
226 B
C
12 lines
226 B
C
#ifndef __winclude_endian_h__
|
|
#define __winclude_endian_h__
|
|
|
|
#include <unistd.h>
|
|
|
|
# define LITTLE_ENDIAN 1234
|
|
# define BIG_ENDIAN 4321
|
|
# define PDP_ENDIAN 3412
|
|
# define BYTE_ORDER LITTLE_ENDIAN
|
|
|
|
#endif
|