diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-05 09:14:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-05 09:14:08 -0300 |
commit | 001f2bdd0e2f8803889c1b5164b57a51e44aef5b (patch) | |
tree | d200cf4d708be3c61e64640c45b47050c9c6a375 /lauxlib.h | |
parent | cd2ddaded97f7f2b2af02cecfd165cf70e6f83f4 (diff) | |
download | lua-001f2bdd0e2f8803889c1b5164b57a51e44aef5b.tar.gz lua-001f2bdd0e2f8803889c1b5164b57a51e44aef5b.tar.bz2 lua-001f2bdd0e2f8803889c1b5164b57a51e44aef5b.zip |
new definition for types-tags
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.25 2000/09/12 13:48:22 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.26 2000/10/02 20:10:55 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 | */ |
@@ -30,7 +30,7 @@ double luaL_check_number (lua_State *L, int numArg); | |||
30 | double luaL_opt_number (lua_State *L, int numArg, double def); | 30 | double luaL_opt_number (lua_State *L, int numArg, double def); |
31 | 31 | ||
32 | void luaL_checkstack (lua_State *L, int space, const char *msg); | 32 | void luaL_checkstack (lua_State *L, int space, const char *msg); |
33 | void luaL_checktype (lua_State *L, int narg, lua_Type t); | 33 | void luaL_checktype (lua_State *L, int narg, int t); |
34 | void luaL_checkany (lua_State *L, int narg); | 34 | void luaL_checkany (lua_State *L, int narg); |
35 | 35 | ||
36 | void luaL_verror (lua_State *L, const char *fmt, ...); | 36 | void luaL_verror (lua_State *L, const char *fmt, ...); |