mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-02-16 13:48:29 +00:00
malloc.h: include stddef to ensure size_t is defined
Signed-off-by: Sven Peter <sven@svenpeter.dev>
This commit is contained in:
parent
f17a15d19a
commit
d256b89343
1 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,8 @@
|
|||
#ifndef MALLOC_H
|
||||
#define MALLOC_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
void *malloc(size_t);
|
||||
void free(void *);
|
||||
void *calloc(size_t, size_t);
|
||||
|
|
Loading…
Add table
Reference in a new issue