diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-26 02:35:18 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-26 02:35:18 +0000 |
commit | 8e816fd43d3514d1ad6793e33c8981e67ac44a88 (patch) | |
tree | b1a14a2e67a758b4ed476a16bf5fd06457b8d289 /usr.bin/ssh/buffer.c | |
parent | b7205a0d0c7d06bada09e008d5cc9b282ba3cd94 (diff) |
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" |