- replaced strtoull() function by own implementation (now available on Win32)
[cparser] / config.h
1 #define INLINE inline
2
3 #ifdef __GNUC__
4 #define NORETURN __attribute__((noreturn))
5 #elif defined _MSC_VER
6 #define NORETURN __declspec(noreturn)
7 #define __attribute__(x)
8 #else
9 #define NORETURN
10 #define __attribute__(x)
11 #endif