diff options
author | 2006-02-07 01:42:00 +0000 | |
---|---|---|
committer | 2006-02-07 01:42:00 +0000 | |
commit | 5caac67421196a145bf379a754d13f24aa05b047 (patch) | |
tree | d2d56f3335d6474831746ba879ab3d05b843cb47 /usr.bin/ssh/serverloop.c | |
parent | regen (diff) | |
download | wireguard-openbsd-5caac67421196a145bf379a754d13f24aa05b047.tar.xz wireguard-openbsd-5caac67421196a145bf379a754d13f24aa05b047.zip |
move #include <termios.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index 42956bceb27..0fe92b56160 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -35,7 +35,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: serverloop.c,v 1.124 2005/12/13 15:03:02 reyk Exp $"); +RCSID("$OpenBSD: serverloop.c,v 1.125 2006/02/07 01:42:00 stevesk Exp $"); + +#include <termios.h> #include "xmalloc.h" #include "packet.h" |