summaryrefslogtreecommitdiff
path: root/lib/libssl/d1_pkt.c
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-11-16 14:12:48 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-11-16 14:12:48 +0000
commit19d77e69b7ab92bed5e96f9b8a92b30aac750e47 (patch)
treeb3d70c3ef9296f1a9ab90aaa99e64ea79b8201fb /lib/libssl/d1_pkt.c
parent0c91d12c143c2f5d42e30144bf144fd14fb1c431 (diff)
Sort and group includes.
Diffstat (limited to 'lib/libssl/d1_pkt.c')
-rw-r--r--lib/libssl/d1_pkt.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/libssl/d1_pkt.c b/lib/libssl/d1_pkt.c
index 7aa5aac7523..83b9bf1ce29 100644
--- a/lib/libssl/d1_pkt.c
+++ b/lib/libssl/d1_pkt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: d1_pkt.c,v 1.36 2014/10/22 15:29:31 jsing Exp $ */
+/* $OpenBSD: d1_pkt.c,v 1.37 2014/11/16 14:12:47 jsing Exp $ */
/*
* DTLS implementation written by Nagendra Modadugu
* (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
@@ -113,12 +113,15 @@
* [including the GNU Public Licence.]
*/
-#include <stdio.h>
-#include <errno.h>
#include <machine/endian.h>
+
+#include <errno.h>
+#include <stdio.h>
+
#include "ssl_locl.h"
-#include <openssl/evp.h>
+
#include <openssl/buffer.h>
+#include <openssl/evp.h>
#include "pqueue.h"