mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
32 lines
682 B
C
32 lines
682 B
C
/*
|
|
* Copyright (C) 2013 Freie Universität Berlin
|
|
*
|
|
* This file subject to the terms and conditions of the GNU Lesser General
|
|
* Public License. See the file LICENSE in the top level directory for more
|
|
* details.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup core_util
|
|
* @{
|
|
*
|
|
* @file oneway_malloc.h
|
|
* @brief Malloc interface
|
|
*
|
|
* @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 */
|