summaryrefslogtreecommitdiff
path: root/stdio-common/bug2.c
blob: 2b34c890bfc0b70872f2a293cb6d8028891ddf6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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;
}