Source-Changes-D archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: CVS commit: src



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


Home | Main Index | Thread Index | Old Index