summaryrefslogtreecommitdiff
path: root/test/stdlib/teston_exit.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-11-06 17:48:49 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-11-06 17:48:49 +0100
commit2ce94b3cb4db55c981ee6f2cbe1d3e790e89a2b7 (patch)
tree4b86ffd597b7c629cf3e65a3e3c2a918acd9a409 /test/stdlib/teston_exit.c
parent094224b6b6a11ae8cb5b7d47e62e25235704fe0b (diff)
allow to compile and run on musl based systems
This is a first shot, more improvements required to allow to run more tests.
Diffstat (limited to 'test/stdlib/teston_exit.c')
-rw-r--r--test/stdlib/teston_exit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/stdlib/teston_exit.c b/test/stdlib/teston_exit.c
index f7e8fd0..32518d6 100644
--- a/test/stdlib/teston_exit.c
+++ b/test/stdlib/teston_exit.c
@@ -66,6 +66,7 @@ static efuncp func_table[] =
int
main ( void )
{
+#if defined(__GLIBC__) || defined(__UCLIBC__)
int i = 0;
unsigned long count = 0;
int numfuncs = sizeof(func_table)/sizeof(efuncp);
@@ -78,5 +79,8 @@ main ( void )
}
printf("%lu functions registered with on_exit.\n", count);
exit(count);
+#else
+ return 23;
+#endif
}