diff options
Diffstat (limited to 'loadlib.c')
-rw-r--r-- | loadlib.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||
570 | static const luaL_reg pk_funcs[] = { | 570 | static 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 | ||
576 | static const luaL_reg ll_funcs[] = { | 576 | static 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} |