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
/
tcc
/
44_scoped_declarations.c
blob
f38664fc5b5af3eb3360bf5533bbe547eb1278e2
1
#include <stdio.h>
2
3
int
main
()
4
{
5
int
a
;
6
7
for
(
a
=
0
;
a
<
2
;
a
++)
8
{
9
int
b
=
a
;
10
}
11
12
printf
(
"it's all good
\n
"
);
13
14
return
0
;
15
}
16
17
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/