From dbdaa77fb5924b4b9e6b374a44ef76481a38d3d2 Mon Sep 17 00:00:00 2001 From: aqua Date: Tue, 8 Nov 2022 17:19:45 +0200 Subject: Add FILE struct --- lib/stdlib.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/stdlib.h') diff --git a/lib/stdlib.h b/lib/stdlib.h index 7f235f0..bd8474d 100644 --- a/lib/stdlib.h +++ b/lib/stdlib.h @@ -1,9 +1,11 @@ #pragma once +#include + /** * Allocate size bytes and return a pointer to the allocated memory */ -void *malloc(unsigned int size); +void *malloc(size_t size); /** * Free the memory space pointed to by ptr -- cgit v1.2.1