From: Matthias Kruk Date: Mon, 10 Aug 2020 04:50:14 +0000 (+0900) Subject: include: Include sys/types.h from stdlib.h X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=5df19f65b4f8824fc27c0cc9ec87c7782ca5ee08;p=corax include: Include sys/types.h from stdlib.h --- 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*);