Resolve warning about __STDC_VERSION__

This commit is contained in:
slmistry 2015-09-10 00:11:14 +01:00
parent 981c252c4c
commit 20e80689a5
1 changed files with 1 additions and 1 deletions

View File

@ -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__