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