Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0004-pointer.c
blobd5d471ab2309b9da1f44e2d4bd253f0154a3e6d8
3 int
4 main()
6 int x;
7 int *p;
9 x = 4;
10 p = &x;
11 *p = 0;
13 return *p;