Add manual definition for stat

This commit is contained in:
Felix Krull 2018-09-29 15:45:04 +02:00 committed by Colin Walters
parent c47eb77001
commit 5c2d700d51
2 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,10 @@ extern crate glib_sys as glib;
extern crate gobject_sys as gobject;
extern crate gio_sys as gio;
mod manual;
pub use manual::*;
#[allow(unused_imports)]
use libc::{c_int, c_char, c_uchar, c_float, c_uint, c_double,
c_short, c_ushort, c_long, c_ulong,

View File

@ -0,0 +1 @@
pub use libc::stat as stat;