summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2004-05-31 22:51:45 +0200
committerMartin Mares <mj@ucw.cz>2004-05-31 22:51:45 +0200
commit7deffd845a0f2bfe4cebbb01e0505314af32693a (patch)
treea272a9bf74bb3154e37975d36691e085998a09af /client
parent9f387e11a319ea55104c6e8362f9820bf1b00097 (diff)
downloadbird-7deffd845a0f2bfe4cebbb01e0505314af32693a.tar
bird-7deffd845a0f2bfe4cebbb01e0505314af32693a.zip
Need <termios.h> for tcdrain().
Diffstat (limited to 'client')
-rw-r--r--client/client.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/client.c b/client/client.c
index 836941f..8fadc6a 100644
--- a/client/client.c
+++ b/client/client.c
@@ -1,7 +1,7 @@
/*
* BIRD Client
*
- * (c) 1999--2000 Martin Mares <mj@ucw.cz>
+ * (c) 1999--2004 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
@@ -10,6 +10,7 @@
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
+#include <termios.h>
#include <errno.h>
#include <sys/socket.h>
#include <sys/un.h>