summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/cipher.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2006-08-03 03:34:41 +0000
committerderaadt <deraadt@openbsd.org>2006-08-03 03:34:41 +0000
commitbd9502d503c60bf5de0fd1cfbab7397f3696ad80 (patch)
tree3ea70e621f5f3cbc4c5dbba594d8fc41316978fa /usr.bin/ssh/cipher.c
parentregen (diff)
downloadwireguard-openbsd-bd9502d503c60bf5de0fd1cfbab7397f3696ad80.tar.xz
wireguard-openbsd-bd9502d503c60bf5de0fd1cfbab7397f3696ad80.zip
almost entirely get rid of the culture of ".h files that include .h files"
ok djm, sort of ok stevesk makes the pain stop in one easy step
Diffstat (limited to 'usr.bin/ssh/cipher.c')
-rw-r--r--usr.bin/ssh/cipher.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/cipher.c b/usr.bin/ssh/cipher.c
index ff98a864a9e..29d2a1b8c07 100644
--- a/usr.bin/ssh/cipher.c
+++ b/usr.bin/ssh/cipher.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cipher.c,v 1.80 2006/07/22 20:48:22 stevesk Exp $ */
+/* $OpenBSD: cipher.c,v 1.81 2006/08/03 03:34:42 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -35,11 +35,12 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "includes.h"
+#include <sys/types.h>
#include <openssl/md5.h>
#include <string.h>
+#include <stdarg.h>
#include "xmalloc.h"
#include "log.h"