diff options
Diffstat (limited to 'test/silly/hello.c')
-rw-r--r-- | test/silly/hello.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/silly/hello.c b/test/silly/hello.c new file mode 100644 index 000000000..4aba926e6 --- /dev/null +++ b/test/silly/hello.c @@ -0,0 +1,8 @@ +#include<stdio.h> +#include <stdlib.h> + +int main(void) +{ + printf("hello world\n"); + exit(42); +} |