repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
initial import
[glibc.git]
/
stdio
/
bug2.c
blob
2b34c890bfc0b70872f2a293cb6d8028891ddf6a
1
#include <ansidecl.h>
2
#include <stdio.h>
3
4
int
5
DEFUN_VOID
(
main
)
6
{
7
int
i
;
8
puts
(
"This should print
\"
wow = I
\"
for I from 0 to 39 inclusive."
);
9
for
(
i
=
0
;
i
<
40
;
i
++)
10
printf
(
"%s = %d
\n
"
,
"wow"
,
i
);
11
return
0
;
12
}