mirror of
https://github.com/DaveGamble/cJSON.git
synced 2024-12-26 21:04:24 +08:00
Disable non-standard C extensions
This commit is contained in:
parent
86234db095
commit
b68e159e5f
17
cJSON.c
17
cJSON.c
@ -37,6 +37,23 @@
|
|||||||
#pragma warning (disable : 4001)
|
#pragma warning (disable : 4001)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Disable some non-standard functionality */
|
||||||
|
#ifdef _POSIX_SOURCE
|
||||||
|
#undef _POSIX_SOURCE
|
||||||
|
#endif
|
||||||
|
#ifdef _POSIX_C_SOURCE
|
||||||
|
#undef _POSIX_C_SOURCE
|
||||||
|
#endif
|
||||||
|
#ifdef _XOPEN_SOURCE
|
||||||
|
#undef _XOPEN_SOURCE
|
||||||
|
#endif
|
||||||
|
#ifdef _GNU_SOURCE
|
||||||
|
#undef _GNU_SOURCE
|
||||||
|
#endif
|
||||||
|
#ifdef _DEFAULT_SOURCE
|
||||||
|
#undef _DEFAULT_SOURCE
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user