diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-05 16:19:24 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-05 16:19:24 +0000 |
commit | f25803714dd73155f22cb5fd97ecedb666e62701 (patch) | |
tree | 9ad770ea80d2ab160992b9435944d94c44991b61 /lib/libcrypto/bio/b_dump.c | |
parent | c433ebe487978ecd52025a78f591dbda97015738 (diff) |
Sort and group includes.
Diffstat (limited to 'lib/libcrypto/bio/b_dump.c')
-rw-r--r-- | lib/libcrypto/bio/b_dump.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/bio/b_dump.c b/lib/libcrypto/bio/b_dump.c index 740686c957b..65238299f22 100644 --- a/lib/libcrypto/bio/b_dump.c +++ b/lib/libcrypto/bio/b_dump.c @@ -61,9 +61,11 @@ */ #include <stdio.h> -#include "cryptlib.h" + #include <openssl/bio.h> +#include "cryptlib.h" + #define TRUNCATE #define DUMP_WIDTH 16 #define DUMP_WIDTH_LESS_INDENT(i) (DUMP_WIDTH - ((i - (i > 6 ? 6 : i) + 3) / 4)) |