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
/
0056-enum.c
blob
2cb7b2aa771d284376ffbc95643668f11ec54c5d
1
2
enum
E
{
3
x
,
4
y
=
2
,
5
z
,
6
};
7
8
int
9
main
()
10
{
11
enum
E e
;
12
13
if
(
x
!=
0
)
14
return
1
;
15
if
(
y
!=
2
)
16
return
2
;
17
if
(
z
!=
3
)
18
return
3
;
19
20
e
=
x
;
21
return
e
;
22
}
23