lgc.h 240 B

123456789101112131415161718
  1. /*
  2. ** $Id: lgc.h,v 1.5 1999/08/16 20:52:00 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 (void);
  10. void luaC_collect (int all);
  11. #endif