/* Override Linux' (4.16.1) to agree with GNU * libc's (2.27) so that we can use Linux' __u64 and * __s64 with libc's PRIu64 and PRId64. * * Linux 4.16.1 normally uses int-ll64.h unconditionally; we need it * to use int-l64.h on platforms where "long" and "long long" are both * 64 bits. */ #if __WORDSIZE == 64 # include #else # include #endif