aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2018-03-09 15:35:34 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2018-03-09 15:35:34 +0100
commit8b8255ac0e188445f6904ff16272e9e93093cbde (patch)
tree7f9d255fa84669fb45e4e2b7313036b0e6b24295
parent20e0da7f14cc5f30863e0b8014fa223fbaff1e30 (diff)
downloadst-patched-8b8255ac0e188445f6904ff16272e9e93093cbde.tar.bz2
st-patched-8b8255ac0e188445f6904ff16272e9e93093cbde.tar.xz
st-patched-8b8255ac0e188445f6904ff16272e9e93093cbde.zip
regression: include termios.h for tcsendbreak etc
-rw-r--r--st.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/st.c b/st.c
index 75c3dd1..65a0cb6 100644
--- a/st.c
+++ b/st.c
@@ -13,6 +13,7 @@
13#include <sys/select.h> 13#include <sys/select.h>
14#include <sys/types.h> 14#include <sys/types.h>
15#include <sys/wait.h> 15#include <sys/wait.h>
16#include <termios.h>
16#include <unistd.h> 17#include <unistd.h>
17#include <wchar.h> 18#include <wchar.h>
18 19