diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-04 17:39:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-04 17:39:54 +0000 |
commit | 8cda0a538b60604b0befc109d8aebf9cd179e2c8 (patch) | |
tree | 2e7adb36d681309a2f28e76b6e68a89eefedc561 /test/silly/hello.c | |
parent | 3259c862c11bfc2260cfbe86d823a3aea68b4e2d (diff) |
Major facelift on the test area -- the beginnings of some real testing
stuff so we can get this library into shape.
-Erik
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); +} |