summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbcook <>2014-07-08 14:30:23 +0000
committerbcook <>2014-07-08 14:30:23 +0000
commit755402b820316d666fee3254b9a97393dee08576 (patch)
tree8d0bd8db65b25d72f03251de34ddc00bb657f774
parentb2d80867358da87df25fb40529dfcb81a251a32d (diff)
downloadopenbsd-755402b820316d666fee3254b9a97393dee08576.tar.gz
openbsd-755402b820316d666fee3254b9a97393dee08576.tar.bz2
openbsd-755402b820316d666fee3254b9a97393dee08576.zip
add missing stdint. include for uint32_t, etc.
ok beck@ jsing@
-rw-r--r--src/lib/libcrypto/chacha/chacha.c5
-rw-r--r--src/lib/libssl/src/crypto/chacha/chacha.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/libcrypto/chacha/chacha.c b/src/lib/libcrypto/chacha/chacha.c
index 141b3e99f6..b8422306fa 100644
--- a/src/lib/libcrypto/chacha/chacha.c
+++ b/src/lib/libcrypto/chacha/chacha.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: chacha.c,v 1.5 2014/06/24 18:12:09 jsing Exp $ */ 1/* $OpenBSD: chacha.c,v 1.6 2014/07/08 14:30:23 bcook Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -15,7 +15,10 @@
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */ 16 */
17 17
18#include <stdint.h>
19
18#include <openssl/chacha.h> 20#include <openssl/chacha.h>
21
19#include "chacha-merged.c" 22#include "chacha-merged.c"
20 23
21void 24void
diff --git a/src/lib/libssl/src/crypto/chacha/chacha.c b/src/lib/libssl/src/crypto/chacha/chacha.c
index 141b3e99f6..b8422306fa 100644
--- a/src/lib/libssl/src/crypto/chacha/chacha.c
+++ b/src/lib/libssl/src/crypto/chacha/chacha.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: chacha.c,v 1.5 2014/06/24 18:12:09 jsing Exp $ */ 1/* $OpenBSD: chacha.c,v 1.6 2014/07/08 14:30:23 bcook Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -15,7 +15,10 @@
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */ 16 */
17 17
18#include <stdint.h>
19
18#include <openssl/chacha.h> 20#include <openssl/chacha.h>
21
19#include "chacha-merged.c" 22#include "chacha-merged.c"
20 23
21void 24void