aboutsummaryrefslogtreecommitdiff
path: root/src/lj_errmsg.h
diff options
context:
space:
mode:
authorMike Pall <mike>2011-01-10 03:43:18 +0100
committerMike Pall <mike>2011-01-10 03:43:18 +0100
commitddf65963332f048838b759bb3d926c58b1b11ce3 (patch)
treec282aeef6c9c612ffa4f53f6e3465359c7b7edf7 /src/lj_errmsg.h
parentd215747fd5a97b3299262f8190803994a492b4d1 (diff)
downloadluajit-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.h1
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")
153ERRDEF(FFI_BADMEMBER, LUA_QS " has no member named " LUA_QS) 153ERRDEF(FFI_BADMEMBER, LUA_QS " has no member named " LUA_QS)
154ERRDEF(FFI_BADIDX, LUA_QS " cannot be indexed") 154ERRDEF(FFI_BADIDX, LUA_QS " cannot be indexed")
155ERRDEF(FFI_WRCONST, "attempt to write to constant location") 155ERRDEF(FFI_WRCONST, "attempt to write to constant location")
156ERRDEF(FFI_NODECL, "missing declaration for symbol " LUA_QS)
156ERRDEF(FFI_NYIPACKBIT, "NYI: packed bit fields") 157ERRDEF(FFI_NYIPACKBIT, "NYI: packed bit fields")
157ERRDEF(FFI_NYICALL, "NYI: cannot call this C function (yet)") 158ERRDEF(FFI_NYICALL, "NYI: cannot call this C function (yet)")
158#endif 159#endif