12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef _TRTS_UTIL_H_
- #define _TRTS_UTIL_H_
- #include <stddef.h> /* for size_t */
- #include "se_types.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- void * get_heap_base(void);
- size_t get_heap_size(void);
- int * get_errno_addr(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|