Skip to content

Commit e5078d1

Browse files
committed
Fix style error
1 parent a7353c5 commit e5078d1

File tree

1 file changed

+7
-7
lines changed
  • src/unix/linux_like/emscripten

1 file changed

+7
-7
lines changed

src/unix/linux_like/emscripten/mod.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ pub type off64_t = ::off_t;
3535
pub type blkcnt64_t = ::blkcnt_t;
3636
pub type rlim64_t = ::rlim_t;
3737

38+
pub type rlimit64 = ::rlimit;
39+
pub type flock64 = ::flock;
40+
pub type stat64 = ::stat;
41+
pub type statfs64 = ::statfs;
42+
pub type statvfs64 = ::statvfs;
43+
pub type dirent64 = ::dirent;
44+
3845
#[cfg_attr(feature = "extra_traits", derive(Debug))]
3946
pub enum fpos64_t {} // FIXME: fill this out with a struct
4047
impl ::Copy for fpos64_t {}
@@ -1768,13 +1775,6 @@ extern "C" {
17681775
pub fn getentropy(buf: *mut ::c_void, buflen: ::size_t) -> ::c_int;
17691776
}
17701777

1771-
pub type rlimit64 = ::rlimit;
1772-
pub type flock64 = ::flock;
1773-
pub type stat64 = ::stat;
1774-
pub type statfs64 = ::statfs;
1775-
pub type statvfs64 = ::statvfs;
1776-
pub type dirent64 = ::dirent;
1777-
17781778
// Alias <foo> to <foo>64 to mimic glibc's LFS64 support
17791779
mod lfs64;
17801780
pub use self::lfs64::*;

0 commit comments

Comments
 (0)