diff options
author | 2006-07-22 20:48:22 +0000 | |
---|---|---|
committer | 2006-07-22 20:48:22 +0000 | |
commit | 0deb67942b30c1593c2410880c6206349479cd2f (patch) | |
tree | 9acb3eb91469c8753beea5543419000531af95bd /usr.bin/ssh/ttymodes.c | |
parent | move #include <time.h> out of includes.h (diff) | |
download | wireguard-openbsd-0deb67942b30c1593c2410880c6206349479cd2f.tar.xz wireguard-openbsd-0deb67942b30c1593c2410880c6206349479cd2f.zip |
move #include <string.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/ttymodes.c')
-rw-r--r-- | usr.bin/ssh/ttymodes.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ttymodes.c b/usr.bin/ssh/ttymodes.c index ffe5e70cf85..6cb0d4e774f 100644 --- a/usr.bin/ssh/ttymodes.c +++ b/usr.bin/ssh/ttymodes.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ttymodes.c,v 1.24 2006/07/11 20:07:25 stevesk Exp $ */ +/* $OpenBSD: ttymodes.c,v 1.25 2006/07/22 20:48:23 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -46,6 +46,7 @@ #include "includes.h" #include <errno.h> +#include <string.h> #include <termios.h> #include "packet.h" |