From 7d356b1ddab0150b7347a5952e3bff2a04704fd4 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 13 Jul 2017 20:09:53 +0200 Subject: added an exit function added Linux syscall stubs for exit and write adapted all tests added a printf test made stdio work on Linux or AbaOs syscalls --- tests/libc/test_abort.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/libc/test_abort.c (limited to 'tests/libc/test_abort.c') diff --git a/tests/libc/test_abort.c b/tests/libc/test_abort.c new file mode 100644 index 0000000..da5c0f2 --- /dev/null +++ b/tests/libc/test_abort.c @@ -0,0 +1,6 @@ +#include "stdlib.h" + +int main( void ) +{ + abort( ); +} -- cgit v1.2.3-54-g00ecf