Resolve warning about __STDC_VERSION__
This commit is contained in:
parent
981c252c4c
commit
20e80689a5
|
@ -109,7 +109,7 @@
|
|||
|
||||
|
||||
/* Are restricted pointers available? (C99) */
|
||||
#if (__STDC_VERSION__ != 199901L)
|
||||
#if !defined(__STDC_VERSION__) || (__STDC_VERSION__ != 199901L)
|
||||
/* Not a C99 compiler */
|
||||
#ifdef __GNUC__
|
||||
#define restrict __restrict__
|
||||
|
|
Loading…
Reference in New Issue