Skip to content

Commit ed81e33

Browse files
doygraydon
authored andcommitted
glob_t should be public on all platforms
1 parent 685baed commit ed81e33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/libc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ pub mod types {
387387
pub mod posix01 {
388388
use libc::types::common::c95::{c_void};
389389
use libc::types::os::arch::c95::{c_char, c_int, size_t};
390-
struct glob_t {
390+
pub struct glob_t {
391391
gl_pathc: size_t,
392392
__unused1: size_t,
393393
gl_offs: size_t,
@@ -606,7 +606,7 @@ pub mod types {
606606
pub mod posix01 {
607607
use libc::types::common::c95::{c_void};
608608
use libc::types::os::arch::c95::{c_char, c_int, size_t};
609-
struct glob_t {
609+
pub struct glob_t {
610610
gl_pathc: size_t,
611611
__unused1: c_int,
612612
gl_offs: size_t,

0 commit comments

Comments
 (0)