mirror of https://github.com/arendst/Tasmota.git
18 lines
328 B
C
18 lines
328 B
C
|
#include "be_constobj.h"
|
||
|
|
||
|
static be_define_const_map_slots(m_libundefined_map) {
|
||
|
{ be_const_key(_X2Ep, -1), be_const_nil() },
|
||
|
};
|
||
|
|
||
|
static be_define_const_map(
|
||
|
m_libundefined_map,
|
||
|
1
|
||
|
);
|
||
|
|
||
|
static be_define_const_module(
|
||
|
m_libundefined,
|
||
|
"undefined"
|
||
|
);
|
||
|
|
||
|
BE_EXPORT_VARIABLE be_define_const_native_module(undefined);
|