mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 02:53:09 +00:00
17 lines
386 B
C
17 lines
386 B
C
#ifndef LUA_SHORT_STRING_TABLE_H
|
|
#define LUA_SHORT_STRING_TABLE_H
|
|
|
|
#include "lstring.h"
|
|
|
|
// If you use modified lua, this macro would be defined in lstring.h
|
|
#ifndef ENABLE_SHORT_STRING_TABLE
|
|
|
|
static inline int luaS_shrinfo(lua_State *L) { return 0; }
|
|
static inline void luaS_initshr() {}
|
|
static inline void luaS_exitshr() {}
|
|
static inline void luaS_expandshr(int n) {}
|
|
|
|
#endif
|
|
|
|
#endif
|