aboutsummaryrefslogtreecommitdiff
path: root/lauxlib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-09-11 17:29:27 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-09-11 17:29:27 -0300
commit8060193702b21a06af3541555db4cd317c733ce9 (patch)
treed1cfa3a4ac41dc6766188680659c1bd1311e22a8 /lauxlib.h
parent2779e81fbbdebf8b7cac97c167ff109bad537c4b (diff)
downloadlua-8060193702b21a06af3541555db4cd317c733ce9.tar.gz
lua-8060193702b21a06af3541555db4cd317c733ce9.tar.bz2
lua-8060193702b21a06af3541555db4cd317c733ce9.zip
`lauxlib' is now part of the libraries (not used by core Lua)
Diffstat (limited to 'lauxlib.h')
-rw-r--r--lauxlib.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lauxlib.h b/lauxlib.h
index de717da5..723ad84a 100644
--- a/lauxlib.h
+++ b/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lauxlib.h,v 1.22 2000/09/04 18:27:32 roberto Exp roberto $ 2** $Id: lauxlib.h,v 1.23 2000/09/11 17:38:42 roberto Exp roberto $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -34,7 +34,6 @@ void luaL_checktype (lua_State *L, int narg, const char *tname);
34 34
35void luaL_verror (lua_State *L, const char *fmt, ...); 35void luaL_verror (lua_State *L, const char *fmt, ...);
36int luaL_findstring (const char *name, const char *const list[]); 36int luaL_findstring (const char *name, const char *const list[]);
37void luaL_chunkid (char *out, const char *source, int len);
38 37
39 38
40 39