Module Name: src Committed By: riastradh Date: Sun Jul 26 14:01:14 UTC 2020
Modified Files: src/tests/sys/crypto/aes: t_aes.c Log Message: Sort includes. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/sys/crypto/aes/t_aes.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/sys/crypto/aes/t_aes.c diff -u src/tests/sys/crypto/aes/t_aes.c:1.2 src/tests/sys/crypto/aes/t_aes.c:1.3 --- src/tests/sys/crypto/aes/t_aes.c:1.2 Sun Jul 26 12:43:27 2020 +++ src/tests/sys/crypto/aes/t_aes.c Sun Jul 26 14:01:14 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: t_aes.c,v 1.2 2020/07/26 12:43:27 martin Exp $ */ +/* $NetBSD: t_aes.c,v 1.3 2020/07/26 14:01:14 riastradh Exp $ */ /*- * Copyright (c) 2020 The NetBSD Foundation, Inc. @@ -29,8 +29,8 @@ #include <sys/types.h> #include <crypto/aes/aes.h> -#include <crypto/aes/aes_impl.h> #include <crypto/aes/aes_bear.h> +#include <crypto/aes/aes_impl.h> #if defined(__i386__) || defined(__x86_64__) #include <crypto/aes/arch/x86/aes_ni.h>