summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2022-07-30 14:49:16 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2022-07-30 14:49:16 +0000
commit47b11630c6f7c90dbd33e50e72b942591199e8dd (patch)
treeab0d39c31ad7517c8fc0eeef3cf620cc08ab0a6c
parent4cacd31607d0758374658ec9307fd8561ac3abfd (diff)
Sort includes.
-rw-r--r--regress/lib/libcrypto/aead/aeadtest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/lib/libcrypto/aead/aeadtest.c b/regress/lib/libcrypto/aead/aeadtest.c
index 50072de0e91..a6a2673320c 100644
--- a/regress/lib/libcrypto/aead/aeadtest.c
+++ b/regress/lib/libcrypto/aead/aeadtest.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aeadtest.c,v 1.16 2022/07/30 14:24:33 jsing Exp $ */
+/* $OpenBSD: aeadtest.c,v 1.17 2022/07/30 14:49:15 jsing Exp $ */
/*
* Copyright (c) 2014, Google Inc.
*
@@ -15,15 +15,15 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <ctype.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <stdint.h>
#include <unistd.h>
-#include <ctype.h>
-#include <openssl/evp.h>
#include <openssl/err.h>
+#include <openssl/evp.h>
/*
* This program tests an AEAD against a series of test vectors from a file. The