blob: dabca84e1b08737867c3659a5dbe26a312cf3cfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$NetBSD: patch-ac,v 1.2 2002/07/02 14:03:52 wiz Exp $
--- tty.c.orig Sat Feb 10 21:45:49 2001
+++ tty.c
@@ -92,7 +92,12 @@
#endif
struct termio oldsb, newsb;
#else
+#ifdef NETBSD
+ #include <sys/termios.h>
+ #define NCC NCCS
+#else
#include <termios.h>
+#endif
struct termios oldsb, newsb;
#endif
|