mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
12 lines
209 B
C
12 lines
209 B
C
|
#ifndef __MALLOC_H
|
||
|
#define __MALLOC_H
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
void *malloc(size_t size);
|
||
|
void *realloc(void *ptr, size_t size);
|
||
|
void *calloc(int size, size_t cnt);
|
||
|
void free(void *ptr);
|
||
|
|
||
|
#endif /* __MALLOC_H */
|