summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2022-07-30 14:49:15 +0000
committerjsing <>2022-07-30 14:49:15 +0000
commit2e8121ec607a52280e34e73c46721a343b649ac4 (patch)
treecc102f09e55b454f17872d1d7834d3de4c4f9055 /src
parentb6c28c9c2119b78485a4888070ee0f37831779b1 (diff)
downloadopenbsd-2e8121ec607a52280e34e73c46721a343b649ac4.tar.gz
openbsd-2e8121ec607a52280e34e73c46721a343b649ac4.tar.bz2
openbsd-2e8121ec607a52280e34e73c46721a343b649ac4.zip
Sort includes.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/aead/aeadtest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libcrypto/aead/aeadtest.c b/src/regress/lib/libcrypto/aead/aeadtest.c
index 50072de0e9..a6a2673320 100644
--- a/src/regress/lib/libcrypto/aead/aeadtest.c
+++ b/src/regress/lib/libcrypto/aead/aeadtest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: aeadtest.c,v 1.16 2022/07/30 14:24:33 jsing Exp $ */ 1/* $OpenBSD: aeadtest.c,v 1.17 2022/07/30 14:49:15 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2014, Google Inc. 3 * Copyright (c) 2014, Google Inc.
4 * 4 *
@@ -15,15 +15,15 @@
15 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */ 16 */
17 17
18#include <ctype.h>
19#include <stdint.h>
18#include <stdio.h> 20#include <stdio.h>
19#include <stdlib.h> 21#include <stdlib.h>
20#include <string.h> 22#include <string.h>
21#include <stdint.h>
22#include <unistd.h> 23#include <unistd.h>
23#include <ctype.h>
24 24
25#include <openssl/evp.h>
26#include <openssl/err.h> 25#include <openssl/err.h>
26#include <openssl/evp.h>
27 27
28/* 28/*
29 * This program tests an AEAD against a series of test vectors from a file. The 29 * This program tests an AEAD against a series of test vectors from a file. The