diff options
author | 2015-09-17 09:51:40 +0000 | |
---|---|---|
committer | 2015-09-17 09:51:40 +0000 | |
commit | fb38ae55ae3830b2e7243857ebc71626b0e63331 (patch) | |
tree | e8a91ced53d921164ab625461f526a3cdfccc228 /lib/libssl/src | |
parent | instead of leaking rarp packets, break from the switch statement (diff) | |
download | wireguard-openbsd-fb38ae55ae3830b2e7243857ebc71626b0e63331.tar.xz wireguard-openbsd-fb38ae55ae3830b2e7243857ebc71626b0e63331.zip |
include stdint.h for uint64_t
noted by Bernard Spil
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/crypto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/crypto.h b/lib/libssl/src/crypto/crypto.h index f9dde6e98eb..c1ee78fb2fd 100644 --- a/lib/libssl/src/crypto/crypto.h +++ b/lib/libssl/src/crypto/crypto.h @@ -1,4 +1,4 @@ -/* $OpenBSD: crypto.h,v 1.39 2015/09/13 16:56:11 miod Exp $ */ +/* $OpenBSD: crypto.h,v 1.40 2015/09/17 09:51:40 bcook Exp $ */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * @@ -114,6 +114,7 @@ * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. */ +#include <stdint.h> #include <stdio.h> #include <stdlib.h> |