diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-27 21:40:35 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-27 21:40:35 +0000 |
commit | ab262188b031c842ae09b15b150600287ead45cc (patch) | |
tree | 298ed601fc88cee59b319ff4496c927565de9acb /test/silly/tiny.c | |
parent | 8fee51d63a5ca4a119850c9831a7219fe496df6c (diff) |
More random fixes and additions.
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); +} |