lgc.h 262 B

123456789101112131415161718
  1. /*
  2. ** $Id: lgc.h,v 1.6 1999/10/04 17:51:04 roberto Exp roberto $
  3. ** Garbage Collector
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lgc_h
  7. #define lgc_h
  8. #include "lobject.h"
  9. void luaC_checkGC (lua_State *L);
  10. void luaC_collect (lua_State *L, int all);
  11. #endif