mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
21 lines
391 B
C
21 lines
391 B
C
/**
|
|
* @ingroup kernel
|
|
* @{
|
|
* @file
|
|
* @author Freie Universität Berlin, Computer Systems & Telematics
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
*/
|
|
|
|
#ifndef _MALLOC_H
|
|
#define _MALLOC_H
|
|
|
|
#include <stddef.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 */
|