]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdio-common/bug2.c
hurd: Fix build
[thirdparty/glibc.git] / stdio-common / bug2.c
CommitLineData
28f540f4
RM
1#include <stdio.h>
2
3int
ebbad4cc 4main (void)
28f540f4
RM
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}