diff options
Diffstat (limited to 'firmware/include/core_alloc.h')
| -rw-r--r-- | firmware/include/core_alloc.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/firmware/include/core_alloc.h b/firmware/include/core_alloc.h index 095cb5d..67fe99d 100644 --- a/firmware/include/core_alloc.h +++ b/firmware/include/core_alloc.h @@ -17,6 +17,7 @@ bool core_shrink(int handle, void* new_start, size_t new_size); int core_free(int handle); size_t core_available(void); size_t core_allocatable(void); +const char* core_get_name(int handle); #ifdef DEBUG void core_check_valid(void); #endif @@ -43,10 +44,4 @@ static inline void* core_get_data(int handle) return buflib_get_data(&core_ctx, handle); } -static inline const char* core_get_name(int handle) -{ - extern struct buflib_context core_ctx; - return buflib_get_name(&core_ctx, handle); -} - #endif /* __CORE_ALLOC_H__ */ |