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 | c1e17371cbe75ce4a1d1a94848fc418a3192e102 (patch) | |
tree | 09f38439b1d9415995b70862ae7e17bb7ba76364 | |
parent | 8c13b33a958ead73c2250bfc72058dfa6586eaae (diff) |
include stdint.h for uint64_t
noted by Bernard Spil
-rw-r--r-- | lib/libcrypto/crypto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/crypto.h b/lib/libcrypto/crypto.h index f9dde6e98eb..c1ee78fb2fd 100644 --- a/lib/libcrypto/crypto.h +++ b/lib/libcrypto/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> |