aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Pall <mike>2013-11-16 18:28:21 +0100
committerMike Pall <mike>2013-11-16 18:28:21 +0100
commitdb64b2b1edbb07055d450df168c360fedb5598a7 (patch)
treed7cd9b7f16851d1300d5ebf9129a9449b4d2d760 /doc
parent5a25a735f589d6fafbaa3c234c59fbfe8920a102 (diff)
downloadluajit-db64b2b1edbb07055d450df168c360fedb5598a7.tar.gz
luajit-db64b2b1edbb07055d450df168c360fedb5598a7.tar.bz2
luajit-db64b2b1edbb07055d450df168c360fedb5598a7.zip
FFI: Clarify ffi.cdef behavior.
Diffstat (limited to 'doc')
-rw-r--r--doc/ext_ffi_semantics.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/ext_ffi_semantics.html b/doc/ext_ffi_semantics.html
index 03229012..57839b16 100644
--- a/doc/ext_ffi_semantics.html
+++ b/doc/ext_ffi_semantics.html
@@ -1188,7 +1188,9 @@ storing and initializing them are supported, yet.</li>
1188<li>The <tt>volatile</tt> type qualifier is currently ignored by 1188<li>The <tt>volatile</tt> type qualifier is currently ignored by
1189compiled code.</li> 1189compiled code.</li>
1190<li><a href="ext_ffi_api.html#ffi_cdef"><tt>ffi.cdef</tt></a> silently 1190<li><a href="ext_ffi_api.html#ffi_cdef"><tt>ffi.cdef</tt></a> silently
1191ignores all re-declarations.</li> 1191ignores most re-declarations. Note: avoid re-declarations which do not
1192conform to C99. The implementation will eventually be changed to
1193perform strict checks.</li>
1192</ul> 1194</ul>
1193<p> 1195<p>
1194The JIT compiler already handles a large subset of all FFI operations. 1196The JIT compiler already handles a large subset of all FFI operations.