From c787dccd9b5c3e55547a2c4bb598c0276de65034 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 16 Aug 1999 17:52:00 -0300 Subject: "const" !!! --- lfunc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lfunc.h') diff --git a/lfunc.h b/lfunc.h index 7f1e5157..718a76c6 100644 --- a/lfunc.h +++ b/lfunc.h @@ -1,5 +1,5 @@ /* -** $Id: lfunc.h,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $ +** $Id: lfunc.h,v 1.5 1997/12/15 16:17:20 roberto Exp roberto $ ** Lua Function structures ** See Copyright Notice in lua.h */ @@ -17,7 +17,7 @@ Closure *luaF_newclosure (int nelems); void luaF_freeproto (TProtoFunc *l); void luaF_freeclosure (Closure *l); -char *luaF_getlocalname (TProtoFunc *func, int local_number, int line); +const char *luaF_getlocalname (TProtoFunc *func, int local_number, int line); #endif -- cgit v1.2.3-55-g6feb