all repos — st @ 5e680d7102ec540ca5859a87a82a2c8d93532518

st (suckless terminal) config

add missing header file
Matthias-Christian Ott ott@enolink.de
commit

5e680d7102ec540ca5859a87a82a2c8d93532518

parent

dc01596e6d7b81d52b805a3e8c16e47228325540

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M std.cstd.c

@@ -6,6 +6,9 @@ #include <sys/wait.h>

#include <ctype.h> #include <errno.h> #include <fcntl.h> +#if !(_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) +#include <pty.h> +#endif #include <signal.h> #include <stdarg.h> #include <stdio.h>