2019-08-19 16:31:06 +02:00
|
|
|
/*
|
|
|
|
* 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 */
|
2022-08-11 16:24:37 +02:00
|
|
|
/** @} */
|