On Sunday 18 November 2012 17:41:55 Emmanuel Dreyfus wrote:
> -#if defined(_INCOMPLETE_XOPEN_C063)
> +#if (_POSIX_C_SOURCE - 0) >= 200809L || (_XOPEN_SOURCE - 0 >= 700) || \
> +    defined(_INCOMPLETE_XOPEN_C063) || defined(_KERNEL)

Shouldn't this be

#if (_POSIX_C_SOURCE - 0) >= 200809L || (_XOPEN_SOURCE - 0 >= 700) || \
    defined(_INCOMPLETE_XOPEN_C063) || defined(_NETBSD_SOURCE)

?

Nick

Reply via email to