summaryrefslogtreecommitdiffstats
path: root/compat.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2013-04-22 09:44:15 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2013-04-22 09:44:15 +0100
commit792e2856c9774cca262929f81b9adbbac0fa1d13 (patch)
treec927674a3d170e26b763d3774e382efa130ff966 /compat.h
parenta46ccbd883495d2acb3eab89e5bcdb61c0c7e195 (diff)
Add compat for cfmakeraw, from Dagobert Michelsen.
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/compat.h b/compat.h
index 622006e1..d3973797 100644
--- a/compat.h
+++ b/compat.h
@@ -236,6 +236,11 @@ int setenv(const char *, const char *, int);
int unsetenv(const char *);
#endif
+#ifndef HAVE_CFMAKERAW
+/* cfmakeraw.c */
+void cfmakeraw(struct termios *tio);
+#endif
+
#ifdef HAVE_GETOPT
#include <getopt.h>
#else