diff options
| author | C. Morgan Hamill <me@cmhamill.org> | 2015-03-13 21:00:43 +0100 |
|---|---|---|
| committer | C. Morgan Hamill <me@cmhamill.org> | 2015-03-17 15:12:00 +0100 |
| commit | 8d22f9ea2d316889a529ea7a5526dcc23a12cfb1 (patch) | |
| tree | e3a54ae863bcc793a53073f3a2a5723a41d49f56 | |
| parent | b58ecb89aa5048420244145dfd5ae51e218f9ea4 (diff) | |
| download | mail-8d22f9ea2d316889a529ea7a5526dcc23a12cfb1.tar.gz | |
Add empty ffi module.
| -rw-r--r-- | src/ffi.rs | 3 | ||||
| -rw-r--r-- | src/lib.rs | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ffi.rs b/src/ffi.rs new file mode 100644 index 0000000..fa541d6 --- /dev/null +++ b/src/ffi.rs @@ -0,0 +1,3 @@ +#![allow(dead_code, non_camel_case_types)] + +//! Re-presentation of the notmuch C API. @@ -1,2 +1,4 @@ #![feature(libc)] extern crate libc; + +mod ffi; |
