summaryrefslogtreecommitdiff
path: root/test/malloc/tst-valloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/malloc/tst-valloc.c')
-rw-r--r--test/malloc/tst-valloc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/malloc/tst-valloc.c b/test/malloc/tst-valloc.c
index 643a0dd..752e107 100644
--- a/test/malloc/tst-valloc.c
+++ b/test/malloc/tst-valloc.c
@@ -6,6 +6,7 @@
int
main (void)
{
+#if __UCLIBC_SUSV2_LEGACY__
char *p;
int pagesize = getpagesize ();
int i;
@@ -20,4 +21,7 @@ main (void)
}
return 0;
+#else
+ return 23;
+#endif
}