summaryrefslogtreecommitdiff
path: root/tests/libc/test_exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libc/test_exit.c')
-rw-r--r--tests/libc/test_exit.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/libc/test_exit.c b/tests/libc/test_exit.c
new file mode 100644
index 0000000..3974da9
--- /dev/null
+++ b/tests/libc/test_exit.c
@@ -0,0 +1,6 @@
+#include "stdlib.h"
+
+int main( void )
+{
+ exit( 0 );
+}