corrections to scren bar rendering offsets
[AROS.git] / test / clib / exit.c
blob8dd7bce48a739eb0298667a4cd2a1122d67ba4ad
1 #include <stdio.h>
2 #include <stdlib.h>
4 #include <aros/debug.h>
6 static unsigned int level = 0;
8 int main(void)
10 bug("Nest level: %u\n", ++level);
12 if (level < 20)
13 main();
15 exit(0);
17 bug("Exit() did not work!\n");
18 return 20;