6 lines
177 B
C
6 lines
177 B
C
|
|
#if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L
|
||
|
|
#pragma error("C compiler must adhere to at least C99 for the following code.")
|
||
|
|
#else
|
||
|
|
/* rest of file */
|
||
|
|
#endif
|