summaryrefslogtreecommitdiffstats
path: root/testsuite/reloc4lib1.c
blob: f1297d8e4713f43b579e486ade09e87e40cd7899 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int main (void)
{
  int i;

  for (i = 0; i < 65536; ++i)
    printf ("int foo%04x (void) { return %d; }\n", i, (i & 31) == 0 ? 0 : i);
}