<pty.h>: linux only

not only Apple but also other OSes except Linux uses <util.h>.
for details, see
https://www.gnu.org/software/gnulib/manual/html_node/pty_002eh.html
This commit is contained in:
SASANO Takayoshi 2021-10-24 13:17:47 +09:00
parent 186c61a128
commit a9fbbc1d2c

View file

@ -32,10 +32,10 @@
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include <termios.h> #include <termios.h>
#if defined(__APPLE__) #if defined(__linux__)
#include <util.h>
#else
#include <pty.h> #include <pty.h>
#else
#include <util.h>
#endif #endif