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/buffer.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/buffer.c')
-rw-r--r-- | usr.bin/ssh/buffer.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/buffer.c b/usr.bin/ssh/buffer.c index ba718daf221..8c9f534f8fd 100644 --- a/usr.bin/ssh/buffer.c +++ b/usr.bin/ssh/buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: buffer.c,v 1.27 2006/04/16 00:48:52 djm Exp $ */ +/* $OpenBSD: buffer.c,v 1.28 2006/07/22 20:48:22 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -14,6 +14,8 @@ #include "includes.h" +#include <string.h> + #include "xmalloc.h" #include "buffer.h" #include "log.h" |