mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
35 lines
599 B
C
35 lines
599 B
C
|
/*
|
||
|
* Copyright (C) 2014-2018 Freie Universität Berlin
|
||
|
*
|
||
|
* This file is subject to the terms and conditions of the GNU Lesser
|
||
|
* General Public License v2.1. See the file LICENSE in the top level
|
||
|
* directory for more details.
|
||
|
*/
|
||
|
/**
|
||
|
* @ingroup pkg_tlsf_malloc
|
||
|
* @{
|
||
|
* @file
|
||
|
* @internal
|
||
|
*
|
||
|
* @brief TLSF/malloc internal definitions
|
||
|
* @author Juan I Carrano
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef TLSF_MALLOC_INTERNAL_H
|
||
|
#define TLSF_MALLOC_INTERNAL_H
|
||
|
|
||
|
#include "tlsf.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern tlsf_t tlsf_malloc_gheap;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* TLSF_MALLOC_INTERNAL_H */
|