diff options
author | Mike Pall <mike> | 2011-01-10 03:43:18 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-01-10 03:43:18 +0100 |
commit | ddf65963332f048838b759bb3d926c58b1b11ce3 (patch) | |
tree | c282aeef6c9c612ffa4f53f6e3465359c7b7edf7 /src/lj_errmsg.h | |
parent | d215747fd5a97b3299262f8190803994a492b4d1 (diff) | |
download | luajit-ddf65963332f048838b759bb3d926c58b1b11ce3.tar.gz luajit-ddf65963332f048838b759bb3d926c58b1b11ce3.tar.bz2 luajit-ddf65963332f048838b759bb3d926c58b1b11ce3.zip |
FFI: Add ffi.load() and ffi.C default namespace.
Diffstat (limited to 'src/lj_errmsg.h')
-rw-r--r-- | src/lj_errmsg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h index 2d54d1e9..b139fa8d 100644 --- a/src/lj_errmsg.h +++ b/src/lj_errmsg.h | |||
@@ -153,6 +153,7 @@ ERRDEF(FFI_NUMARG, "wrong number of arguments for function call") | |||
153 | ERRDEF(FFI_BADMEMBER, LUA_QS " has no member named " LUA_QS) | 153 | ERRDEF(FFI_BADMEMBER, LUA_QS " has no member named " LUA_QS) |
154 | ERRDEF(FFI_BADIDX, LUA_QS " cannot be indexed") | 154 | ERRDEF(FFI_BADIDX, LUA_QS " cannot be indexed") |
155 | ERRDEF(FFI_WRCONST, "attempt to write to constant location") | 155 | ERRDEF(FFI_WRCONST, "attempt to write to constant location") |
156 | ERRDEF(FFI_NODECL, "missing declaration for symbol " LUA_QS) | ||
156 | ERRDEF(FFI_NYIPACKBIT, "NYI: packed bit fields") | 157 | ERRDEF(FFI_NYIPACKBIT, "NYI: packed bit fields") |
157 | ERRDEF(FFI_NYICALL, "NYI: cannot call this C function (yet)") | 158 | ERRDEF(FFI_NYICALL, "NYI: cannot call this C function (yet)") |
158 | #endif | 159 | #endif |