1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
#if defined(__LINE__)
__LINE__
#endif
#if defined(__FILE__)
__FILE__
#endif
#if defined(__BASE_FILE__)
__BASE_FILE__
#endif
#if defined(__DATE__)
date
#endif
#if defined(__TIME__)
time
#endif
#if defined(__COUNTER__)
counter
#endif
#if defined(__INCLUDE_LEVEL__)
__INCLUDE_LEVEL__
#endif
/*
* check-name: dynamic-macros
* check-command: sparse -E $file
*
* check-output-start
2
"preprocessor/dynamic.c"
"preprocessor/dynamic.c"
date
time
counter
0
* check-output-end
*/
|