mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
375 B
C
20 lines
375 B
C
/**
|
|
* @ingroup kernel
|
|
* @{
|
|
* @file
|
|
* @author Freie Universität Berlin, Computer Systems & Telematics, FeuerWhere project
|
|
* @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 _free (void* ptr);
|
|
|
|
/** @} */
|
|
#endif /* _MALLOC_H */
|