ldebug.h 291 B

12345678910111213141516171819
  1. /*
  2. ** $Id: $
  3. ** Auxiliary functions from Debug Interface module
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef ldebug_h
  7. #define ldebug_h
  8. #include "lobject.h"
  9. #include "luadebug.h"
  10. void luaG_callerror (lua_State *L, TObject *func);
  11. void luaG_indexerror (lua_State *L, TObject *t);
  12. #endif