diff options
author | Linus Färnstrand <linus@mullvad.net> | 2018-08-29 13:13:37 +0200 |
---|---|---|
committer | Linus Färnstrand <linus@mullvad.net> | 2018-08-29 13:15:26 +0200 |
commit | 6030e50aefd3717fcf611f4e11487c627bf1f95c (patch) | |
tree | cf73c0aea9f0cc80a4360172a97de8b47e8f4b4b /nftnl/src/expr/cmp.rs | |
parent | e97f3e90c35cd15b53915fd136c6a4c433c79834 (diff) |
Fix all changed libc imports
Diffstat (limited to 'nftnl/src/expr/cmp.rs')
-rw-r--r-- | nftnl/src/expr/cmp.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nftnl/src/expr/cmp.rs b/nftnl/src/expr/cmp.rs index 5124149..5127bc9 100644 --- a/nftnl/src/expr/cmp.rs +++ b/nftnl/src/expr/cmp.rs @@ -1,5 +1,8 @@ use libc; -use nftnl_sys::{self as sys, c_char, c_void}; +use nftnl_sys::{ + self as sys, + libc::{c_char, c_void}, +}; use std::borrow::Cow; use std::ffi::CString; |