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 authored and graydon committed May 1, 2013
1 parent 685baed commit ed81e33
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

1 comment on commit ed81e33

@graydon
Copy link
Owner

@graydon graydon commented on ed81e33 May 1, 2013

Choose a reason for hiding this comment

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

r+

Please sign in to comment.