mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
291 B
20 lines
291 B
25 years ago
|
/*
|
||
|
** $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
|