Fix to allow user to force build using WOLF_C99 option.

This commit is contained in:
David Garske
2018-04-23 13:52:58 -07:00
parent 289a282183
commit b48a9ded15

View File

@ -34,7 +34,7 @@
#endif
/* detect C99 */
#if defined(__STDC_VERSION__)
#if !defined(WOLF_C99) && defined(__STDC_VERSION__)
#if __STDC_VERSION__ >= 199901L
#define WOLF_C99
#endif