Skip to content

Commit

Permalink
glob_t should be public on all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
doy committed May 1, 2013
1 parent 4cbcf54 commit 4159372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcore/libc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ pub mod types {
pub mod posix01 {
use libc::types::common::c95::{c_void};
use libc::types::os::arch::c95::{c_char, c_int, size_t};
struct glob_t {
pub struct glob_t {
gl_pathc: size_t,
__unused1: size_t,
gl_offs: size_t,
Expand Down Expand Up @@ -606,7 +606,7 @@ pub mod types {
pub mod posix01 {
use libc::types::common::c95::{c_void};
use libc::types::os::arch::c95::{c_char, c_int, size_t};
struct glob_t {
pub struct glob_t {
gl_pathc: size_t,
__unused1: c_int,
gl_offs: size_t,
Expand Down

5 comments on commit 4159372

@bors
Copy link
Contributor

@bors bors commented on 4159372 May 1, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from graydon
at doy@4159372

@bors
Copy link
Contributor

@bors bors commented on 4159372 May 1, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging doy/rust/glob = 4159372 into auto

@bors
Copy link
Contributor

@bors bors commented on 4159372 May 1, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

doy/rust/glob = 4159372 merged ok, testing candidate = 3e227907

@bors
Copy link
Contributor

@bors bors commented on 4159372 May 1, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 4159372 May 1, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding incoming to auto = 3e227907

Please sign in to comment.