/** * @ingroup kernel * @{ * @file * @author Freie Universität Berlin, Computer Systems & Telematics * @author Kaspar Schleiser */ #ifndef _MALLOC_H #define _MALLOC_H #include void *_malloc(size_t size); void *_realloc(void *ptr, size_t size); void _free(void *ptr); /** @} */ #endif /* _MALLOC_H */