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
/
0065-ifdef.c
blob
be3665e6107132e7052575abcb690d2853287342
1
2
#ifdef FOO
3
XXX
4
#ifdef BAR
5
XXX
6
#endif
7
XXX
8
#endif
9
10
#define FOO 1
11
12
#ifdef FOO
13
14
#ifdef FOO
15
int
x
=
0
;
16
#endif
17
18
int
19
main
()
20
{
21
return
x
;
22
}
23
#endif
24
25
26