On Friday, 24 April 2015, at 4:12 am, Matt Whitlock wrote:
> +#if defined(__BIONIC__) && _FILE_OFFSET_BITS == 64

The preprocessor needs to test whether _FILE_OFFSET_BITS is defined before 
using it in an expression.

#if defined(__BIONIC__) && defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64
_______________________________________________
busybox mailing list
busybox@busybox.net
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to