linit.c 328 B

12345678910111213141516171819
  1. /*
  2. ** $Id: linit.c,v 1.1 1999/01/08 16:49:32 roberto Exp roberto $
  3. ** Initialization of libraries for lua.c
  4. ** See Copyright Notice in lua.h
  5. */
  6. #define LUA_REENTRANT
  7. #include "lua.h"
  8. #include "lualib.h"
  9. void lua_userinit (lua_State *L) {
  10. lua_iolibopen(L);
  11. lua_strlibopen(L);
  12. lua_mathlibopen(L);
  13. lua_dblibopen(L);
  14. }