use struct timeval to obtain the cputime. disable display atm until the code is corre...
[AROS.git] / compiler / purify / t_illread.c
blobabc1ca712d649aef9fbf10edf3c9629e174f9ec1
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdio.h>
8 int c;
10 void foo (int * x)
12 *x ++ = 1;
15 int main (int argc, char ** argv)
17 int * x;
18 int a, b;
20 x = &b;
22 a = *x; /* Uninitialized memory read */
24 return 0;