summaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-01-26 13:38:01 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-01-26 13:38:01 -0200
commitfd25d4ad85302a84551ac6ed915435c035a978e4 (patch)
tree83b182dd0a067bf4087f859cd82f4eb26324899d /lapi.c
parent2431534f1061149bf7db7985dd137cd6324056a8 (diff)
downloadlua-github-fd25d4ad85302a84551ac6ed915435c035a978e4.tar.gz
no need to define functions for macros...
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c25
1 files changed, 1 insertions, 24 deletions
diff --git a/lapi.c b/lapi.c
index 5f75649f..f89bb153 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
/*
-** $Id: lapi.c,v 1.30 1998/12/30 17:26:49 roberto Exp roberto $
+** $Id: lapi.c,v 1.31 1999/01/15 13:11:22 roberto Exp roberto $
** Lua API
** See Copyright Notice in lua.h
*/
@@ -622,29 +622,6 @@ lua_Object lua_getref (int ref)
/* }====================================================== */
-/*
-** {======================================================
-** Derived functions
-** =======================================================
-*/
-int (lua_call) (char *name) { return lua_call(name); }
-
-void (lua_pushref) (int ref) { lua_pushref(ref); }
-
-int (lua_refobject) (lua_Object o, int l) { return lua_refobject(o, l); }
-
-void (lua_register) (char *n, lua_CFunction f) { lua_register(n, f); }
-
-void (lua_pushuserdata) (void *u) { lua_pushuserdata(u); }
-
-void (lua_pushcfunction) (lua_CFunction f) { lua_pushcfunction(f); }
-
-int (lua_clonetag) (int t) { return lua_clonetag(t); }
-
-/* }====================================================== */
-
-
-
#ifdef LUA_COMPAT2_5
/*