Introduce forkpty()

This commit is contained in:
Justine Tunney 2023-11-28 18:52:14 -08:00
parent fa20edc44d
commit 43de12db55
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
4 changed files with 103 additions and 1 deletions

View file

@ -147,6 +147,7 @@ libc/isystem/pmmintrin.h \
libc/isystem/poll.h \
libc/isystem/popcntintrin.h \
libc/isystem/pthread.h \
libc/isystem/pty.h \
libc/isystem/pwd.h \
libc/isystem/queue \
libc/isystem/random \

7
libc/isystem/pty.h Normal file
View file

@ -0,0 +1,7 @@
#ifndef _PTY_H
#define _PTY_H
#include "libc/calls/termios.h"
#include "libc/calls/weirdtypes.h"
#include "libc/sysv/consts/baud.internal.h"
#include "libc/sysv/consts/termios.h"
#endif /* _PTY_H */