mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
d256b89343
Signed-off-by: Sven Peter <sven@svenpeter.dev>
16 lines
319 B
C
16 lines
319 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef MALLOC_H
|
|
#define MALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *malloc(size_t);
|
|
void free(void *);
|
|
void *calloc(size_t, size_t);
|
|
void *realloc(void *, size_t);
|
|
void *realloc_in_place(void *, size_t);
|
|
void *memalign(size_t, size_t);
|
|
int posix_memalign(void **, size_t, size_t);
|
|
|
|
#endif
|