diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2021-12-03 17:23:17 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2021-12-03 17:23:17 +0000 |
commit | 3802240a8fb22d28fc08d5cbc948abc32efb91ed (patch) | |
tree | 7421afcb7ab20751c558b33f2d45874c968ee60d | |
parent | a17cec85470aa7d2838fc968ce67761f653aa770 (diff) |
Group and sort includes.
-rw-r--r-- | lib/libcrypto/asn1/tasn_dec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/asn1/tasn_dec.c b/lib/libcrypto/asn1/tasn_dec.c index beeff8089ae..ab3ff8c3bc4 100644 --- a/lib/libcrypto/asn1/tasn_dec.c +++ b/lib/libcrypto/asn1/tasn_dec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tasn_dec.c,v 1.39 2021/12/03 17:22:10 jsing Exp $ */ +/* $OpenBSD: tasn_dec.c,v 1.40 2021/12/03 17:23:16 jsing Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2000. */ @@ -56,14 +56,14 @@ * */ - #include <stddef.h> #include <string.h> + #include <openssl/asn1.h> #include <openssl/asn1t.h> -#include <openssl/objects.h> #include <openssl/buffer.h> #include <openssl/err.h> +#include <openssl/objects.h> /* Constructed types with a recursive definition (such as can be found in PKCS7) * could eventually exceed the stack given malicious input with excessive |