freebsd-ports/misc/mshell/files/patch-ag
Jean-Marc Zucconi 6ec4d9369d Use <termios.h> instead of <sgtty.h>
PR:		ports/110384
Submitted by:	Ed Schouten <ed@fxq.nl>
2007-04-14 12:17:55 +00:00

13 lines
454 B
Text

--- mshell.h.orig Sun Oct 20 16:15:25 2002
+++ mshell.h Sun Oct 20 16:14:30 2002
@@ -5,8 +5,8 @@
#include <sys/types.h>
#include <sys/stat.h>
#ifdef BSD
-#include <sys/dir.h> /* accessing the directory structure */
-#include <sgtty.h> /* struct for terminal attributes */
+#include <dirent.h> /* accessing the directory structure */
+#include <termios.h> /* struct for terminal attributes */
#endif
#ifdef SYSV
#define index strchr