diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-27 04:04:57 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-27 04:04:57 +0000 |
commit | b5ab6db1d995309d3e03b45c5780c7748ed0cd6b (patch) | |
tree | 8f3cdcc82ead62f46638837dc0bd18b5f4101d5d | |
parent | 3390e85214598b099110dc6aef96a2d27754b980 (diff) |
Pull in <stdlib.h> for NULL
ok deraadt@
-rw-r--r-- | usr.bin/ssh/chacha.h | 3 |
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]; |