makefile for misc, endless.c
This commit is contained in:
13
test/misc/endless.c
Normal file
13
test/misc/endless.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user