浏览代码

Auxiliary functions from Debug Interface module

Roberto Ierusalimschy 25 年之前
父节点
当前提交
27163f032e
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      ldebug.h

+ 19 - 0
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