You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
355 B
C
20 lines
355 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 _free (void* ptr);
|
|
|
|
/** @} */
|
|
#endif /* _MALLOC_H */
|