|
1
|
// SPDX-License-Identifier: GPL-3.0-or-later |
|
2
|
|
|
3
|
#ifndef LIBNETDATA_TYPES_H |
|
4
|
#define LIBNETDATA_TYPES_H |
|
5
|
|
|
6
|
#include "config.h" |
|
7
|
|
|
8
|
#if defined(HAVE_INTTYPES_H) |
|
9
|
#include <inttypes.h> |
|
10
|
#elif defined(HAVE_STDINT_H) |
|
11
|
#include <stdint.h> |
|
12
|
#endif |
|
13
|
|
|
14
|
#endif // LIBNETDATA_TYPES_H |