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/ssh-add.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/ssh-add.c')
-rw-r--r-- | usr.bin/ssh/ssh-add.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-add.c b/usr.bin/ssh/ssh-add.c index e6df83b4254..772b375d1f8 100644 --- a/usr.bin/ssh/ssh-add.c +++ b/usr.bin/ssh/ssh-add.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-add.c,v 1.85 2006/07/22 20:48:23 stevesk Exp $ */ +/* $OpenBSD: ssh-add.c,v 1.86 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 @@ -39,6 +39,7 @@ #include <sys/types.h> #include <sys/stat.h> +#include <sys/param.h> #include <openssl/evp.h> |