summaryrefslogtreecommitdiff
path: root/src/unix/bsd/openbsdlike/bitrig.rs
blob: 9039ff446cd360299adcda323487064690ad74af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
s! {
    pub struct glob_t {
        pub gl_pathc:  c_int,
        pub gl_matchc: c_int,
        pub gl_offs:   c_int,
        pub gl_flags:  c_int,
        pub gl_pathv:  *mut *mut c_char,
        __unused1: *mut c_void,
        __unused2: *mut c_void,
        __unused3: *mut c_void,
        __unused4: *mut c_void,
        __unused5: *mut c_void,
        __unused6: *mut c_void,
        __unused7: *mut c_void,
    }
}