aboutsummaryrefslogtreecommitdiff
path: root/loadlib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2020-05-06 14:19:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2020-05-06 14:19:08 -0300
commit61a4e64a6667bedaa882571c48a173ef5a4ba73b (patch)
treea68bc1aef4dded2da5f4b0bd8c084075c18ae355 /loadlib.c
parent9a6f47f0edfded799f7cb6fd719bb0071b326100 (diff)
downloadlua-61a4e64a6667bedaa882571c48a173ef5a4ba73b.tar.gz
lua-61a4e64a6667bedaa882571c48a173ef5a4ba73b.tar.bz2
lua-61a4e64a6667bedaa882571c48a173ef5a4ba73b.zip
Back to old encoding of versions in binary files
(Undoing part of commit f53eabeed8.) It is better to keep this encoding stable, so that all Lua versions can read at least the version of a binary file.
Diffstat (limited to 'loadlib.c')
-rw-r--r--loadlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loadlib.c b/loadlib.c
index ddfecca9..c0ec9a13 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -69,7 +69,7 @@ static const char *const CLIBS = "_CLIBS";
69 69
70/* 70/*
71** Special type equivalent to '(void*)' for functions in gcc 71** Special type equivalent to '(void*)' for functions in gcc
72** (to supress warnings when converting function pointers) 72** (to suppress warnings when converting function pointers)
73*/ 73*/
74typedef void (*voidf)(void); 74typedef void (*voidf)(void);
75 75