Files
pkgsrc-ng/editors/mg/patches/patch-ttyio.c
2016-01-21 23:40:00 +01:00

17 lines
364 B
C

$NetBSD: patch-ttyio.c,v 1.1 2014/07/07 18:06:58 jperkin Exp $
SunOS needs sys/filio.h for FIONREAD.
--- ttyio.c.orig 2008-12-11 08:59:08.000000000 +0000
+++ ttyio.c
@@ -14,6 +14,9 @@
#include <sys/types.h>
#include <sys/time.h>
#include <sys/ioctl.h>
+#ifdef __sun
+#include <sys/filio.h>
+#endif
#include <fcntl.h>
#include <termios.h>
#include <term.h>