mirror of https://github.com/lua/lua.git
Roberto Ierusalimschy
26 years ago
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||
|
/*
|
||||
|
** $Id: linit.c,v 1.1 1999/01/08 16:47:44 roberto Exp $ |
||||
|
** Initialization of libraries for lua.c |
||||
|
** See Copyright Notice in lua.h |
||||
|
*/ |
||||
|
|
||||
|
#include "lua.h" |
||||
|
#include "lualib.h" |
||||
|
|
||||
|
|
||||
|
void lua_userinit (void) { |
||||
|
lua_iolibopen(); |
||||
|
lua_strlibopen(); |
||||
|
lua_mathlibopen(); |
||||
|
lua_dblibopen(); |
||||
|
} |
||||
|
|
Loading…
Reference in new issue