You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
567 B
C
20 lines
567 B
C
/* ============================================================
|
|
* Control compile time options.
|
|
* ============================================================
|
|
*
|
|
* Compile time options have moved to config.mk.
|
|
*/
|
|
|
|
|
|
/* ============================================================
|
|
* Compatibility defines
|
|
*
|
|
* Generally for Windows native support.
|
|
* ============================================================ */
|
|
#ifdef WIN32
|
|
#define snprintf sprintf_s
|
|
#define strcasecmp strcmpi
|
|
#define strtok_r strtok_s
|
|
#define strerror_r(e, b, l) strerror_s(b, l, e)
|
|
#endif
|