diff options
author | 2006-07-26 02:35:16 +0000 | |
---|---|---|
committer | 2006-07-26 02:35:16 +0000 | |
commit | 2f43a2f848f436435722d0e9d58b630a06118ca7 (patch) | |
tree | 8cc5ed1ea362b21dd4b1f44e6cf689bc8d91550c /usr.bin/ssh/buffer.c | |
parent | Crank buffer sizes to the 1024 limit imposed by ttymalloc() (diff) | |
download | wireguard-openbsd-2f43a2f848f436435722d0e9d58b630a06118ca7.tar.xz wireguard-openbsd-2f43a2f848f436435722d0e9d58b630a06118ca7.zip |
move #include <sys/param.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 8c9f534f8fd..c6e8a8d48ca 100644 --- a/usr.bin/ssh/buffer.c +++ b/usr.bin/ssh/buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: buffer.c,v 1.28 2006/07/22 20:48:22 stevesk Exp $ */ +/* $OpenBSD: buffer.c,v 1.29 2006/07/26 02:35:17 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 <sys/param.h> + #include <string.h> #include "xmalloc.h" |