0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

Fix tty changes for OSX

This commit is contained in:
Brian White 2010-12-03 07:40:26 -05:00 committed by Ryan Dahl
parent a0e9a510b0
commit e4bca19843

View File

@ -5,7 +5,11 @@
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#ifdef __APPLE__
#include <util.h>
#else
#include <pty.h>
#endif
#include <termios.h>
#include <sys/ioctl.h>