-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing 64 bit FILE stream functions #30
Comments
Should just be a matter of updating the headers. |
Are they added to r13 beta1? |
many of these were only added to the platform in N, so having new headers doesn't buy you anything unless you're also targeting N. (i think fopen64 is the only one on your list, since on Android fopen==fopen64.) |
Why lseek64 not working? I try add define _FILE_OFFSET_BITS 64, but still now works. |
please file a new bug, including all the information that the new bug template asks for. |
The NDK doesn't have fopen64, fseeko64, ftello64, fgetpos64, fsetpos64 functions so needed to manipulate files larger than 4Gb (though it provides truncate64, lseek64, etc.).
The text was updated successfully, but these errors were encountered: