mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 18:40:14 +00:00
13 lines
223 B
C
13 lines
223 B
C
|
#include <ansidecl.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
DEFUN_VOID(main)
|
||
|
{
|
||
|
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;
|
||
|
}
|