summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-12-28 10:55:47 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-12-28 10:55:47 -0200
commitdf3a81ec88cdab5afca66e550c9bd768c21963e2 (patch)
tree4241b194d250d78ee5a18de51bce4a00e1c188f9 /lua.h
parentb8e76d9b5c86182998c0616627607181154a60b1 (diff)
downloadlua-github-df3a81ec88cdab5afca66e550c9bd768c21963e2.tar.gz
functions that no more return error codes now have return type void
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/lua.h b/lua.h
index 8aba1579..dd368d67 100644
--- a/lua.h
+++ b/lua.h
@@ -2,7 +2,7 @@
** LUA - Linguagem para Usuarios de Aplicacao
** Grupo de Tecnologia em Computacao Grafica
** TeCGraf - PUC-Rio
-** $Id: lua.h,v 3.12 1994/12/13 15:54:21 roberto Exp roberto $
+** $Id: lua.h,v 3.13 1994/12/16 15:55:55 roberto Exp roberto $
*/
@@ -49,18 +49,18 @@ char *lua_getstring (lua_Object object);
lua_CFunction lua_getcfunction (lua_Object object);
void *lua_getuserdata (lua_Object object);
-int lua_pushnil (void);
-int lua_pushnumber (float n);
-int lua_pushstring (char *s);
-int lua_pushliteral (char *s);
-int lua_pushcfunction (lua_CFunction fn);
-int lua_pushusertag (void *u, int tag);
-int lua_pushobject (lua_Object object);
+void lua_pushnil (void);
+void lua_pushnumber (float n);
+void lua_pushstring (char *s);
+void lua_pushliteral (char *s);
+void lua_pushcfunction (lua_CFunction fn);
+void lua_pushusertag (void *u, int tag);
+void lua_pushobject (lua_Object object);
lua_Object lua_getglobal (char *name);
-int lua_storeglobal (char *name);
+void lua_storeglobal (char *name);
-int lua_storesubscript (void);
+void lua_storesubscript (void);
lua_Object lua_getsubscript (void);
int lua_type (lua_Object object);