From 5df19f65b4f8824fc27c0cc9ec87c7782ca5ee08 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Mon, 10 Aug 2020 13:50:14 +0900 Subject: [PATCH] include: Include sys/types.h from stdlib.h --- include/stdlib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/stdlib.h b/include/stdlib.h index 6fbf6d7..004e99a 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,6 +1,8 @@ #ifndef STDLIB_H #define STDLIB_H +#include + void *malloc(size_t); void free(void*); -- 2.47.3