makefile for misc, endless.c

This commit is contained in:
mrdudz
2014-11-22 22:22:30 +01:00
parent 9fe0b38177
commit 198bd893f9
4 changed files with 88 additions and 0 deletions

13
test/misc/endless.c Normal file
View File

@@ -0,0 +1,13 @@
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
printf("entering endless loop\n");
for(;;) {
;
}
printf("error: should not come here\n");
return EXIT_FAILURE;
}