mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
285 B
18 lines
285 B
26 years ago
|
/*
|
||
|
** $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();
|
||
|
}
|
||
|
|