Sign in
third-party-mirror
/
GRTEv4
/
cf41cedf52c87cf4f27c61e4eb8444ecb811ab13
/
.
/
google3
/
third_party
/
grte
/
v4_src
/
glibc-2.19
/
stdio-common
/
bug2.c
blob: 79b89a4d289860d3f32b61adbdb7e0c1df3556a2 [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
main
(
void
)
{
int
i
;
puts
(
"This should print \"wow = I\" for I from 0 to 39 inclusive."
);
for
(
i
=
0
;
i
<
40
;
i
++)
printf
(
"%s = %d\n"
,
"wow"
,
i
);
return
0
;
}