getpt
(3)open a new pseudoterminal master
#define _GNU_SOURCE /* See feature_test_macros(7) */ #include <stdlib.h> int getpt(void);
LIBRARY
DESCRIPTION
getpt() opens a new pseudoterminal device and returns a file descriptor that refers to that device. It is equivalent to opening the pseudoterminal multiplexor device
open("/dev/ptmx", O_RDWR);
on Linux systems, though the pseudoterminal multiplexor device is located elsewhere on some systems that use the GNU C library.