repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0077-defined.c
blob
88fb17c5516e7e370159afcd96ea54005b8e19d7
1
2
#if defined X
3
X
4
#endif
5
6
#if defined(X)
7
X
8
#endif
9
10
#if X
11
X
12
#endif
13
14
#define X 0
15
16
#if X
17
X
18
#endif
19
20
#if defined(X)
21
int
x
=
0
;
22
#endif
23
24
#undef X
25
#define X 1
26
27
#if X
28
int
29
main
()
30
{
31
return
0
;
32
}
33
#endif