2015-09-01 07:11:36 +02:00
|
|
|
/*
|
|
|
|
** Header to allow luac.cross compile within NodeMCU
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
#ifndef luac_cross_h
|
|
|
|
#define luac_cross_h
|
|
|
|
|
|
|
|
#ifdef LUA_CROSS_COMPILER
|
|
|
|
#define ICACHE_RODATA_ATTR
|
|
|
|
|
|
|
|
#define c_stderr stderr
|
|
|
|
#define c_stdin stdin
|
|
|
|
#define c_stdout stdout
|
2019-07-23 06:22:38 +02:00
|
|
|
|
2018-02-13 22:26:56 +01:00
|
|
|
#define dbg_printf printf
|
2015-09-01 07:11:36 +02:00
|
|
|
#else
|
|
|
|
|
|
|
|
#endif /* LUA_CROSS_COMPILER */
|
|
|
|
#endif /* luac_cross_h */
|