diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-27 16:05:37 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-10-27 16:05:37 -0200 |
commit | aa1bd8876c4963209874e85d5665b17f8a557ff7 (patch) | |
tree | 112a2989c5944edc5dd199fb1e8c0e5c9b1210ea /loadlib.c | |
parent | 7314acaa8003fd91e59eb7c9e4333a8c3a3beb0d (diff) | |
download | lua-aa1bd8876c4963209874e85d5665b17f8a557ff7.tar.gz lua-aa1bd8876c4963209874e85d5665b17f8a557ff7.tar.bz2 lua-aa1bd8876c4963209874e85d5665b17f8a557ff7.zip |
comments
Diffstat (limited to 'loadlib.c')
-rw-r--r-- | loadlib.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 | /* |