summaryrefslogtreecommitdiff
path: root/include/remote/endian.h
blob: 6aa6466d1a98610e0eff62a853ced824b94a1a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// This is an incomplete & imprecice implementation of the
// standard file by the same name

#ifndef ENDIAN_H
#define ENDIAN_H

#define __LITTLE_ENDIAN        1234
#define __BIG_ENDIAN           4321

#define __BYTE_ORDER __LITTLE_ENDIAN

#endif // ENDIAN_H