From c787dccd9b5c3e55547a2c4bb598c0276de65034 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 16 Aug 1999 17:52:00 -0300 Subject: "const" !!! --- ldo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ldo.h') diff --git a/ldo.h b/ldo.h index cf651423..a4dac9a5 100644 --- a/ldo.h +++ b/ldo.h @@ -1,5 +1,5 @@ /* -** $Id: ldo.h,v 1.5 1998/07/12 16:14:34 roberto Exp roberto $ +** $Id: ldo.h,v 1.6 1999/06/22 20:37:23 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -36,9 +36,9 @@ void luaD_openstack (int nelems); void luaD_lineHook (int line); void luaD_callHook (StkId base, TProtoFunc *tf, int isreturn); void luaD_calln (int nArgs, int nResults); -void luaD_callTM (TObject *f, int nParams, int nResults); +void luaD_callTM (const TObject *f, int nParams, int nResults); int luaD_protectedrun (void); -void luaD_gcIM (TObject *o); +void luaD_gcIM (const TObject *o); void luaD_travstack (int (*fn)(TObject *)); void luaD_checkstack (int n); -- cgit v1.2.3-55-g6feb