fix: msgpack requires limits.h for UINT_MAX
[lttng-tools.git] / src / vendor / msgpack / lttng-config.h
CommitLineData
116a02e3
JG
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
030ea321 11#include <limits.h>
116a02e3
JG
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.027921 seconds and 4 git commands to generate.