summaryrefslogtreecommitdiff
path: root/test/silly
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-27 21:40:35 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-27 21:40:35 +0000
commitab262188b031c842ae09b15b150600287ead45cc (patch)
tree298ed601fc88cee59b319ff4496c927565de9acb /test/silly
parent8fee51d63a5ca4a119850c9831a7219fe496df6c (diff)
More random fixes and additions.
Diffstat (limited to 'test/silly')
-rw-r--r--test/silly/.cvsignore2
-rw-r--r--test/silly/tiny.c8
2 files changed, 10 insertions, 0 deletions
diff --git a/test/silly/.cvsignore b/test/silly/.cvsignore
index c6e0c6f72..e4f16bb13 100644
--- a/test/silly/.cvsignore
+++ b/test/silly/.cvsignore
@@ -2,3 +2,5 @@ hello
hello.o
hello_glibc
hello_glibc.o
+tiny
+tiny.o
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);
+}