lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 27163f032eed6b851b98a0ab67b1387d701e61c0
parent eab57ed6fddcc70891f017d7a1c4a51b3d3c2018
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri, 14 Jan 2000 15:15:22 -0200

Auxiliary functions from Debug Interface module

Diffstat:
Aldebug.h | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/ldebug.h b/ldebug.h @@ -0,0 +1,19 @@ +/* +** $Id: $ +** Auxiliary functions from Debug Interface module +** See Copyright Notice in lua.h +*/ + +#ifndef ldebug_h +#define ldebug_h + + +#include "lobject.h" +#include "luadebug.h" + + +void luaG_callerror (lua_State *L, TObject *func); +void luaG_indexerror (lua_State *L, TObject *t); + + +#endif