From 7aa0fbdf93019e6fd545ce302242415fdd5e9f8b Mon Sep 17 00:00:00 2001 From: Peter Limkilde Svendsen <peter.limkilde@gmail.com> 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 4875b8751..d71b78130 100644 --- a/tests/stdlib/alloc.c +++ b/tests/stdlib/alloc.c @@ -1,6 +1,7 @@ #include <malloc.h> #include <stdio.h> #include <stdlib.h> +#include <stdint.h> /* for SIZE_MAX */ int main(int argc, char ** argv) { char * ptr = (char *)malloc(256); -- GitLab