Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / service / protocol-plugin / plugins / mqtt-fan / lib / config.h
1 /* ============================================================
2  * Control compile time options.
3  * ============================================================
4  *
5  * Compile time options have moved to config.mk.
6  */
7
8
9 /* ============================================================
10  * Compatibility defines
11  *
12  * Generally for Windows native support.
13  * ============================================================ */
14 #ifdef WIN32
15 #define snprintf sprintf_s
16 #define strcasecmp strcmpi
17 #define strtok_r strtok_s
18 #define strerror_r(e, b, l) strerror_s(b, l, e)
19 #endif