aboutsummaryrefslogtreecommitdiff
path: root/loadlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-01-13 11:18:04 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-01-13 11:18:04 -0200
commita9a4bf68b0917b2fb07c4bf79602fa5b7c59484e (patch)
tree0f1a4e7e2a196cba4d49fb8feb7e989c85cde0e3 /loadlib.c
parentf31cc8e3425635cf028fb8a84d080f1ec4fc32cc (diff)
downloadlua-a9a4bf68b0917b2fb07c4bf79602fa5b7c59484e.tar.gz
lua-a9a4bf68b0917b2fb07c4bf79602fa5b7c59484e.tar.bz2
lua-a9a4bf68b0917b2fb07c4bf79602fa5b7c59484e.zip
typo in comment
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 e7201c6c..79d3e452 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loadlib.c,v 1.123 2014/11/12 13:31:51 roberto Exp roberto $ 2** $Id: loadlib.c,v 1.124 2015/01/05 13:51:39 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**
@@ -136,8 +136,8 @@ static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym);
136#include <dlfcn.h> 136#include <dlfcn.h>
137 137
138/* 138/*
139** Macro to covert pointer to void* to pointer to function. This cast 139** Macro to convert pointer-to-void* to pointer-to-function. This cast
140** is undefined according to ISO C, but POSIX assumes that it must work. 140** is undefined according to ISO C, but POSIX assumes that it works.
141** (The '__extension__' in gnu compilers is only to avoid warnings.) 141** (The '__extension__' in gnu compilers is only to avoid warnings.)
142*/ 142*/
143#if defined(__GNUC__) 143#if defined(__GNUC__)