aboutsummaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lualib.h')
-rw-r--r--lualib.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/lualib.h b/lualib.h
index 68fa86b3..d39a71bc 100644
--- a/lualib.h
+++ b/lualib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lualib.h,v 1.12 2000/09/12 13:46:59 roberto Exp roberto $ 2** $Id: lualib.h,v 1.13 2000/10/20 16:39:03 roberto Exp roberto $
3** Lua standard libraries 3** Lua standard libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -11,13 +11,18 @@
11#include "lua.h" 11#include "lua.h"
12 12
13 13
14#ifndef LUALIB_API
15#define LUALIB_API extern
16#endif
17
18
14#define LUA_ALERT "_ALERT" 19#define LUA_ALERT "_ALERT"
15 20
16LUA_API void lua_baselibopen (lua_State *L); 21LUALIB_API void lua_baselibopen (lua_State *L);
17LUA_API void lua_iolibopen (lua_State *L); 22LUALIB_API void lua_iolibopen (lua_State *L);
18LUA_API void lua_strlibopen (lua_State *L); 23LUALIB_API void lua_strlibopen (lua_State *L);
19LUA_API void lua_mathlibopen (lua_State *L); 24LUALIB_API void lua_mathlibopen (lua_State *L);
20LUA_API void lua_dblibopen (lua_State *L); 25LUALIB_API void lua_dblibopen (lua_State *L);
21 26
22 27
23 28