diff options
Diffstat (limited to 'font/src/lib.rs')
-rw-r--r-- | font/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/font/src/lib.rs b/font/src/lib.rs index ba632bee..bd485ff0 100644 --- a/font/src/lib.rs +++ b/font/src/lib.rs @@ -10,8 +10,6 @@ extern crate fontconfig; #[cfg(not(target_os = "macos"))] extern crate freetype; -#[cfg(not(target_os = "macos"))] -extern crate libc; #[cfg(target_os = "macos")] extern crate core_text; @@ -23,6 +21,7 @@ extern crate core_foundation_sys; extern crate core_graphics; extern crate euclid; +extern crate libc; use std::fmt; |