diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-02-07 23:04:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-02-07 23:04:54 +0000 |
commit | c85dc7f5f11442ec2ec085e14d21a613cd621c4d (patch) | |
tree | 90cc1e562c0a32d10c1d6c38396141a300c0bf9e | |
parent | 957a598c9e6e78b9c2109af4c95a7b32c0ee7dbb (diff) | |
download | buildroot-c85dc7f5f11442ec2ec085e14d21a613cd621c4d.tar.gz buildroot-c85dc7f5f11442ec2ec085e14d21a613cd621c4d.zip |
test
-rw-r--r-- | tiny.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tiny.c b/tiny.c new file mode 100644 index 0000000000..e54c0ff9e4 --- /dev/null +++ b/tiny.c @@ -0,0 +1,6 @@ +#include <unistd.h> + +int main(void) +{ + _exit(42); +} |