fix using c-api / compile with gcc

This commit is contained in:
Zdenko Podobný 2018-09-28 23:14:32 +02:00
parent a0564fd4ec
commit bf6d929e4c

View File

@ -38,7 +38,11 @@
#endif
#endif /* defined(_MSC_VER) */
#else
#ifdef __cplusplus
#include <climits>
#else /* C compiler*/
#include <limits.h>
#endif /* __cplusplus */
#ifndef PATH_MAX
#define MAX_PATH 4096
#else