Nek5000
SEM for Incompressible NS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
c99.h
Go to the documentation of this file.
1 #ifndef C99_H
2 #define C99_H
3 
4 #ifndef __STDC_VERSION__
5 # define NO_C99
6 #elif __STDC_VERSION__ < 199901L
7 # define NO_C99
8 #endif
9 
10 #ifdef NO_C99
11 # define restrict
12 # define inline
13 # undef NO_C99
14 #endif
15 
16 #endif