getpt.3: Remove mention of O_NOCTTY

The glibc implementation of getpt has actually never been setting
O_NOCTTY when opening /dev/ptmx or BSD ptys.

Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Samuel Thibault 2019-12-31 18:01:35 +01:00 committed by Michael Kerrisk
parent 305c001324
commit 378e5745a4
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ It is equivalent to
.PP
.in +4n
.EX
open("/dev/ptmx", O_RDWR | O_NOCTTY);
open("/dev/ptmx", O_RDWR);
.EE
.in
.PP