From 7aa0fbdf93019e6fd545ce302242415fdd5e9f8b Mon Sep 17 00:00:00 2001 From: Peter Limkilde Svendsen Date: Sat, 2 Feb 2019 16:51:38 +0100 Subject: [PATCH] Include stdint.h in test --- tests/stdlib/alloc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/stdlib/alloc.c b/tests/stdlib/alloc.c index 4875b87519..d71b78130c 100644 --- a/tests/stdlib/alloc.c +++ b/tests/stdlib/alloc.c @@ -1,6 +1,7 @@ #include #include #include +#include /* for SIZE_MAX */ int main(int argc, char ** argv) { char * ptr = (char *)malloc(256);