]> git.sur5r.net Git - cc65/blob - test/misc/endless.c
Add two new trampoline test cases
[cc65] / test / misc / endless.c
1
2 #include <stdio.h>
3 #include <stdlib.h>
4
5 int main(void)
6 {
7     printf("entering endless loop\n");
8     for(;;) {
9         ;
10     }
11     printf("error: should not come here\n");
12     return EXIT_FAILURE;
13 }