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
Regenerate MIPS libm-test-ulps.
[glibc.git]
/
stdio-common
/
bug2.c
blob
79b89a4d289860d3f32b61adbdb7e0c1df3556a2
1
#include <stdio.h>
2
3
int
4
main
(
void
)
5
{
6
int
i
;
7
puts
(
"This should print
\"
wow = I
\"
for I from 0 to 39 inclusive."
);
8
for
(
i
=
0
;
i
<
40
;
i
++)
9
printf
(
"%s = %d
\n
"
,
"wow"
,
i
);
10
return
0
;
11
}