diff options
author | Mike Pall <mike> | 2015-09-20 19:25:39 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2015-09-20 19:25:39 +0200 |
commit | 52ea1a30afc204553c99126ab43c2b16f2bd0182 (patch) | |
tree | e77b429085c37d39c24c5108ae3f67f449f088a6 /src | |
parent | 49427dfcc2bb9ac60cd6023a59b0f788fcd38c3c (diff) | |
download | luajit-52ea1a30afc204553c99126ab43c2b16f2bd0182.tar.gz luajit-52ea1a30afc204553c99126ab43c2b16f2bd0182.tar.bz2 luajit-52ea1a30afc204553c99126ab43c2b16f2bd0182.zip |
FFI: Add ssize_t declaration.
Diffstat (limited to '')
-rw-r--r-- | src/lj_ctype.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_ctype.c b/src/lj_ctype.c index 2e23c994..eda070ce 100644 --- a/src/lj_ctype.c +++ b/src/lj_ctype.c | |||
@@ -38,6 +38,8 @@ | |||
38 | _("uint64_t", UINT64) \ | 38 | _("uint64_t", UINT64) \ |
39 | _("intptr_t", INT_PSZ) \ | 39 | _("intptr_t", INT_PSZ) \ |
40 | _("uintptr_t", UINT_PSZ) \ | 40 | _("uintptr_t", UINT_PSZ) \ |
41 | /* From POSIX. */ \ | ||
42 | _("ssize_t", INT_PSZ) \ | ||
41 | /* End of typedef list. */ | 43 | /* End of typedef list. */ |
42 | 44 | ||
43 | /* Keywords (only the ones we actually care for). */ | 45 | /* Keywords (only the ones we actually care for). */ |