Message292174
| Author |
xdegaye |
| Recipients |
eryksun, mba, serhiy.storchaka, steve.dower, vstinner, xdegaye, xiang.zhang |
| Date |
2017-04-23.17:18:28 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1492967908.84.0.939751554727.issue29619@psf.upfronthosting.co.za> |
| In-reply-to |
|
| Content |
sizeof(unsigned long long) is 8 on Android x86 and HAVE_LARGEFILE_SUPPORT is undefined.
According to msg280053 HAVE_LARGEFILE_SUPPORT is also undefined on Android x86_64 (and also on Linux x86_64).
> Maybe the code should be simplified to always use unsigned long long.
Yes. If I understand correcty, one could only use 'unsigned long long' to assert at build time and use the smallest of the two unsigned long that fits with the size of st->st_ino at runtime. |
|