mkstemp.3: Fix _POSIX_C_SOURCE value for mkstemp()

The correct _POSIX_C_SOURCE value has always been 200809L,
not 200112L.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Quentin Rameau 2016-08-04 08:15:25 +10:00 committed by Michael Kerrisk
parent bc91192853
commit c6785202b0
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ Feature Test Macro Requirements for glibc (see
.PD 0
_XOPEN_SOURCE\ >=\ 500
.\" || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
|| /* Since glibc 2.12: */ _POSIX_C_SOURCE\ >=\ 200112L
|| /* Since glibc 2.12: */ _POSIX_C_SOURCE\ >=\ 200809L
|| /* Glibc versions <= 2.19: */ _SVID_SOURCE || _BSD_SOURCE
.PD
.RE