Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0010-goto.c
blobd5bfbbffdc97f39b47257e653afa82b2dfc03754
1 int
2 main()
4 start:
5 goto next;
6 return 1;
7 success:
8 return 0;
9 next:
10 foo:
11 goto success;
12 return 1;