diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2015-09-17 09:51:41 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2015-09-17 09:51:41 +0000 |
commit | dc949edef67f911f8a33c725a2a7656e5f4d223c (patch) | |
tree | 2209092bc8bf982f5f013f1c86f8d09d18092b30 /lib | |
parent | 9fbd2ebb5c820d9e6d83b28d7ee74fde540f3f38 (diff) |
include stdint.h for uint64_t
noted by Bernard Spil
Diffstat (limited to 'lib')
-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> |