diff options
author | Mike Pall <mike> | 2013-11-16 18:28:21 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2013-11-16 18:28:21 +0100 |
commit | db64b2b1edbb07055d450df168c360fedb5598a7 (patch) | |
tree | d7cd9b7f16851d1300d5ebf9129a9449b4d2d760 /doc | |
parent | 5a25a735f589d6fafbaa3c234c59fbfe8920a102 (diff) | |
download | luajit-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.html | 4 |
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 |
1189 | compiled code.</li> | 1189 | compiled 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 |
1191 | ignores all re-declarations.</li> | 1191 | ignores most re-declarations. Note: avoid re-declarations which do not |
1192 | conform to C99. The implementation will eventually be changed to | ||
1193 | perform strict checks.</li> | ||
1192 | </ul> | 1194 | </ul> |
1193 | <p> | 1195 | <p> |
1194 | The JIT compiler already handles a large subset of all FFI operations. | 1196 | The JIT compiler already handles a large subset of all FFI operations. |