aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/preprocessor/dynamic.c
blob: a829542f82ce07599a000ca73f448d943579744d (plain)
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
#if defined(__LINE__)
__LINE__
#endif
#if defined(__FILE__)
__FILE__
#endif
#if defined(__DATE__)
date
#endif
#if defined(__TIME__)
time
#endif
#if defined(__COUNTER__)
counter
#endif

/*
 * check-name: dynamic-macros
 * check-command: sparse -E $file
 *
 * check-output-start

2
"preprocessor/dynamic.c"
date
time
counter
 * check-output-end
 */