aboutsummaryrefslogtreecommitdiff
path: root/loadlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'loadlib.c')
-rw-r--r--loadlib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/loadlib.c b/loadlib.c
index 017564d0..d4df06ed 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loadlib.c,v 1.40 2005/08/25 15:39:16 roberto Exp roberto $ 2** $Id: loadlib.c,v 1.41 2005/08/26 17:32:05 roberto Exp roberto $
3** Dynamic library loader for Lua 3** Dynamic library loader for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5** 5**
@@ -567,13 +567,13 @@ static void setpath (lua_State *L, const char *fieldname, const char *envname,
567} 567}
568 568
569 569
570static const luaL_reg pk_funcs[] = { 570static const luaL_Reg pk_funcs[] = {
571 {"loadlib", ll_loadlib}, 571 {"loadlib", ll_loadlib},
572 {NULL, NULL} 572 {NULL, NULL}
573}; 573};
574 574
575 575
576static const luaL_reg ll_funcs[] = { 576static const luaL_Reg ll_funcs[] = {
577 {"module", ll_module}, 577 {"module", ll_module},
578 {"require", ll_require}, 578 {"require", ll_require},
579 {NULL, NULL} 579 {NULL, NULL}