ldebug.h 339 B

12345678910111213141516171819
  1. /*
  2. ** $Id: ldebug.h,v 1.1 2000/01/14 17:15:44 roberto Exp roberto $
  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 "lstate.h"
  9. #include "luadebug.h"
  10. void luaG_callerror (lua_State *L, StkId func);
  11. void luaG_indexerror (lua_State *L, StkId t);
  12. #endif