File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
src/unix/linux_like/emscripten Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,13 @@ pub type off64_t = ::off_t;
35
35
pub type blkcnt64_t = :: blkcnt_t ;
36
36
pub type rlim64_t = :: rlim_t ;
37
37
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
+
38
45
#[ cfg_attr( feature = "extra_traits" , derive( Debug ) ) ]
39
46
pub enum fpos64_t { } // FIXME: fill this out with a struct
40
47
impl :: Copy for fpos64_t { }
@@ -1768,13 +1775,6 @@ extern "C" {
1768
1775
pub fn getentropy ( buf : * mut :: c_void , buflen : :: size_t ) -> :: c_int ;
1769
1776
}
1770
1777
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
-
1778
1778
// Alias <foo> to <foo>64 to mimic glibc's LFS64 support
1779
1779
mod lfs64;
1780
1780
pub use self :: lfs64:: * ;
You can’t perform that action at this time.
0 commit comments