summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/dh.c
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2006-07-26 02:35:16 +0000
committerstevesk <stevesk@openbsd.org>2006-07-26 02:35:16 +0000
commit2f43a2f848f436435722d0e9d58b630a06118ca7 (patch)
tree8cc5ed1ea362b21dd4b1f44e6cf689bc8d91550c /usr.bin/ssh/dh.c
parentCrank buffer sizes to the 1024 limit imposed by ttymalloc() (diff)
downloadwireguard-openbsd-2f43a2f848f436435722d0e9d58b630a06118ca7.tar.xz
wireguard-openbsd-2f43a2f848f436435722d0e9d58b630a06118ca7.zip
move #include <sys/param.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/dh.c')
-rw-r--r--usr.bin/ssh/dh.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/dh.c b/usr.bin/ssh/dh.c
index b37195f418e..bad0a348083 100644
--- a/usr.bin/ssh/dh.c
+++ b/usr.bin/ssh/dh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dh.c,v 1.38 2006/07/22 20:48:23 stevesk Exp $ */
+/* $OpenBSD: dh.c,v 1.39 2006/07/26 02:35:17 stevesk Exp $ */
/*
* Copyright (c) 2000 Niels Provos. All rights reserved.
*
@@ -25,6 +25,8 @@
#include "includes.h"
+#include <sys/param.h>
+
#include <openssl/bn.h>
#include <openssl/dh.h>