]> git.corax.cc Git - corax/commitdiff
include: Include sys/types.h from stdlib.h
authorMatthias Kruk <m@m10k.eu>
Mon, 10 Aug 2020 04:50:14 +0000 (13:50 +0900)
committerMatthias Kruk <m@m10k.eu>
Mon, 10 Aug 2020 04:50:14 +0000 (13:50 +0900)
include/stdlib.h

index 6fbf6d7f59bf0c91bba006ac7ef662e30b83911b..004e99a4066cbe28451fe520196d56ca0c2e6bbc 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef STDLIB_H
 #define STDLIB_H
 
+#include <sys/types.h>
+
 void *malloc(size_t);
 void free(void*);