mirror of https://github.com/rusefi/lua.git
detail
This commit is contained in:
parent
d2a64bb6d4
commit
8399df5dcf
4
lcode.c
4
lcode.c
|
@ -1,11 +1,11 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lcode.c,v 1.62 2001/02/12 19:21:19 roberto Exp roberto $
|
** $Id: lcode.c,v 1.63 2001/02/23 17:17:25 roberto Exp roberto $
|
||||||
** Code generator for Lua
|
** Code generator for Lua
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include "stdlib.h"
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "lua.h"
|
#include "lua.h"
|
||||||
|
|
||||||
|
|
4
lualib.h
4
lualib.h
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lualib.h,v 1.17 2001/02/23 17:17:25 roberto Exp roberto $
|
** $Id: lualib.h,v 1.18 2001/02/23 17:28:12 roberto Exp roberto $
|
||||||
** Lua standard libraries
|
** Lua standard libraries
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define LUA_ALERT "_ALERT"
|
#define LUA_ALERT l_s("_ALERT")
|
||||||
|
|
||||||
LUALIB_API void lua_baselibopen (lua_State *L);
|
LUALIB_API void lua_baselibopen (lua_State *L);
|
||||||
LUALIB_API void lua_iolibopen (lua_State *L);
|
LUALIB_API void lua_iolibopen (lua_State *L);
|
||||||
|
|
Loading…
Reference in New Issue