File tree 1 file changed +5
-0
lines changed 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -921,14 +921,19 @@ extern {
921
921
offset : off64_t )
922
922
-> * mut :: c_void ;
923
923
pub fn open64 ( path : * const c_char , oflag : :: c_int , ...) -> :: c_int ;
924
+ pub fn openat64 ( fd : :: c_int ,
925
+ path : * const c_char ,
926
+ oflag : :: c_int , ...) -> :: c_int ;
924
927
pub fn pread64 ( fd : :: c_int , buf : * mut :: c_void , count : :: size_t ,
925
928
offset : off64_t ) -> :: ssize_t ;
926
929
pub fn pwrite64 ( fd : :: c_int , buf : * const :: c_void , count : :: size_t ,
927
930
offset : off64_t ) -> :: ssize_t ;
931
+ pub fn readdir64 ( dirp : * mut :: DIR ) -> * mut :: dirent64 ;
928
932
pub fn readdir64_r ( dirp : * mut :: DIR , entry : * mut :: dirent64 ,
929
933
result : * mut * mut :: dirent64 ) -> :: c_int ;
930
934
pub fn setrlimit64 ( resource : :: c_int , rlim : * const rlimit64 ) -> :: c_int ;
931
935
pub fn stat64 ( path : * const c_char , buf : * mut stat64 ) -> :: c_int ;
936
+ pub fn truncate64 ( path : * const c_char , length : off64_t ) -> :: c_int ;
932
937
pub fn eventfd ( init : :: c_uint , flags : :: c_int ) -> :: c_int ;
933
938
pub fn sysinfo ( info : * mut :: sysinfo ) -> :: c_int ;
934
939
You can’t perform that action at this time.
0 commit comments