summaryrefslogtreecommitdiffstats
path: root/tests/deckard/contrib/libfaketime/src/sunos_endian.h
blob: b15996a92c8dc3d8c2f29ac50cd14cbf902ca5ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef SUN_OS_ENDIAN_H
#define SUN_OS_ENDIAN_H

#include <sys/byteorder.h>

#define htobe64(x) BE_64(x)
#define be64toh(x) BE_64(x)
#define htole64(x) LE_64(x)
#define le64toh(x) LE_64(x)

#endif /* SUN_OS_ENDIAN_H */