Ticket #18346: foo.c

File foo.c, 252 bytes (added by bhaible, 20 months ago)

test case

Line 
1#include <stdio.h>
2#include <stdlib.h>
3#include <time.h>
4
5int
6main ()
7{
8 char buf[128];
9 unsigned int n_big = 0;
10
11 initstate (1680733396, buf, sizeof buf);
12
13 printf ("n_big = %u\n", n_big); fflush (stdout);
14 if (n_big > 0) abort ();
15 return 0;
16}