mirror of https://github.com/arendst/Tasmota.git
19 lines
370 B
C
19 lines
370 B
C
#include "be_constobj.h"
|
|
|
|
static be_define_const_map_slots(m_libgc_map) {
|
|
{ be_const_key(allocated, -1), be_const_func(m_allocated) },
|
|
{ be_const_key(collect, -1), be_const_func(m_collect) },
|
|
};
|
|
|
|
static be_define_const_map(
|
|
m_libgc_map,
|
|
2
|
|
);
|
|
|
|
static be_define_const_module(
|
|
m_libgc,
|
|
"gc"
|
|
);
|
|
|
|
BE_EXPORT_VARIABLE be_define_const_native_module(gc);
|