aboutsummaryrefslogtreecommitdiff
path: root/loadlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'loadlib.c')
-rw-r--r--loadlib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/loadlib.c b/loadlib.c
index 01b7c45a..898ac92e 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loadlib.c,v 1.117 2014/10/17 16:28:21 roberto Exp roberto $ 2** $Id: loadlib.c,v 1.118 2014/10/25 11:50:46 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**
@@ -127,7 +127,7 @@ static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym);
127 127
128 128
129 129
130#if defined(LUA_USE_DLOPEN) 130#if defined(LUA_USE_DLOPEN) /* { */
131/* 131/*
132** {======================================================================== 132** {========================================================================
133** This is an implementation of loadlib based on the dlfcn interface. 133** This is an implementation of loadlib based on the dlfcn interface.
@@ -161,7 +161,7 @@ static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) {
161 161
162 162
163 163
164#elif defined(LUA_DL_DLL) 164#elif defined(LUA_DL_DLL) /* }{ */
165/* 165/*
166** {====================================================================== 166** {======================================================================
167** This is an implementation of loadlib for Windows using native functions. 167** This is an implementation of loadlib for Windows using native functions.
@@ -225,7 +225,7 @@ static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) {
225/* }====================================================== */ 225/* }====================================================== */
226 226
227 227
228#else 228#else /* }{ */
229/* 229/*
230** {====================================================== 230** {======================================================
231** Fallback for other systems 231** Fallback for other systems
@@ -258,7 +258,7 @@ static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) {
258} 258}
259 259
260/* }====================================================== */ 260/* }====================================================== */
261#endif 261#endif /* } */
262 262
263 263
264/* 264/*