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;
3535pub type blkcnt64_t = :: blkcnt_t ;
3636pub 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 ) ) ]
3946pub enum fpos64_t { } // FIXME: fill this out with a struct
4047impl :: 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
17791779mod lfs64;
17801780pub use self :: lfs64:: * ;
You can’t perform that action at this time.
0 commit comments