diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-11-16 14:12:48 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-11-16 14:12:48 +0000 |
commit | 19d77e69b7ab92bed5e96f9b8a92b30aac750e47 (patch) | |
tree | b3d70c3ef9296f1a9ab90aaa99e64ea79b8201fb /lib/libssl/dtls1.h | |
parent | 0c91d12c143c2f5d42e30144bf144fd14fb1c431 (diff) |
Sort and group includes.
Diffstat (limited to 'lib/libssl/dtls1.h')
-rw-r--r-- | lib/libssl/dtls1.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/libssl/dtls1.h b/lib/libssl/dtls1.h index e7229fb56be..d3d7e38464c 100644 --- a/lib/libssl/dtls1.h +++ b/lib/libssl/dtls1.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dtls1.h,v 1.14 2014/07/10 08:51:14 tedu Exp $ */ +/* $OpenBSD: dtls1.h,v 1.15 2014/11/16 14:12:47 jsing Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -60,11 +60,13 @@ #ifndef HEADER_DTLS1_H #define HEADER_DTLS1_H -#include <openssl/buffer.h> +#include <sys/time.h> + #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <sys/time.h> + +#include <openssl/buffer.h> #ifdef __cplusplus extern "C" { |