62258233df24ef6d12348141afee8ecfdaaff74e
[lttng-tools.git] / src / vendor / msgpack / lttng-config.h
1 /*
2 * Copyright (C) 2020 Michael Jeanson <mjeanson@efficios.com>
3 *
4 * SPDX-License-Identifier: BSL-1.0
5 *
6 */
7
8 #ifndef MSGPACK_LTTNG_CONFIG_H
9 #define MSGPACK_LTTNG_CONFIG_H
10
11 #include <limits.h>
12 #include <common/compat/endian.h>
13
14 #if __BYTE_ORDER == __LITTLE_ENDIAN
15 #define MSGPACK_ENDIAN_LITTLE_BYTE 1
16 #elif __BYTE_ORDER == __BIG_ENDIAN
17 #define MSGPACK_ENDIAN_BIG_BYTE 1
18 #endif
19
20 #endif
This page took 0.028805 seconds and 3 git commands to generate.