aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
blob: 013751c6bf963f98f378756a9adfe0b14fc85e0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MQTT_CONFIG_H
#define MQTT_CONFIG_H

#if __STDC_VERSION__ < 199901L
#define MQTT_INLINE __inline
#else
#define MQTT_INLINE inline
#endif

#if __STDC_VERSION__ >= 199901L
#define _XOPEN_SOURCE 600
#else
#define _XOPEN_SOURCE 500
#endif

#endif