summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2016-08-27 04:04:57 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2016-08-27 04:04:57 +0000
commitb5ab6db1d995309d3e03b45c5780c7748ed0cd6b (patch)
tree8f3cdcc82ead62f46638837dc0bd18b5f4101d5d
parent3390e85214598b099110dc6aef96a2d27754b980 (diff)
Pull in <stdlib.h> for NULL
ok deraadt@
-rw-r--r--usr.bin/ssh/chacha.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/chacha.h b/usr.bin/ssh/chacha.h
index 40eaf2d9009..762052565d5 100644
--- a/usr.bin/ssh/chacha.h
+++ b/usr.bin/ssh/chacha.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: chacha.h,v 1.3 2014/05/02 03:27:54 djm Exp $ */
+/* $OpenBSD: chacha.h,v 1.4 2016/08/27 04:04:56 guenther Exp $ */
/*
chacha-merged.c version 20080118
@@ -10,6 +10,7 @@ Public domain.
#define CHACHA_H
#include <sys/types.h>
+#include <stdlib.h>
struct chacha_ctx {
u_int input[16];