diff options
author | 2014-07-08 14:30:23 +0000 | |
---|---|---|
committer | 2014-07-08 14:30:23 +0000 | |
commit | e693045f0effea3e02a4d042a5c4e91562cedb53 (patch) | |
tree | d97d664ade190a08deb47009523917f9148bc2bd /lib/libssl/src | |
parent | make the filter API move forward (still not plugged). (diff) | |
download | wireguard-openbsd-e693045f0effea3e02a4d042a5c4e91562cedb53.tar.xz wireguard-openbsd-e693045f0effea3e02a4d042a5c4e91562cedb53.zip |
add missing stdint. include for uint32_t, etc.
ok beck@ jsing@
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/chacha/chacha.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/chacha/chacha.c b/lib/libssl/src/crypto/chacha/chacha.c index 141b3e99f68..b8422306fa9 100644 --- a/lib/libssl/src/crypto/chacha/chacha.c +++ b/lib/libssl/src/crypto/chacha/chacha.c @@ -1,4 +1,4 @@ -/* $OpenBSD: chacha.c,v 1.5 2014/06/24 18:12:09 jsing Exp $ */ +/* $OpenBSD: chacha.c,v 1.6 2014/07/08 14:30:23 bcook Exp $ */ /* * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> * @@ -15,7 +15,10 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <stdint.h> + #include <openssl/chacha.h> + #include "chacha-merged.c" void |