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