summaryrefslogtreecommitdiff
path: root/src/lib/libssl/d1_pkt.c
diff options
context:
space:
mode:
authorjsing <>2014-11-16 14:12:47 +0000
committerjsing <>2014-11-16 14:12:47 +0000
commitd6b346577efe94c30d6ba08ca7f8feae71688a3c (patch)
tree04d418c3104bff49ee7d27e26e24c2cb5fd85474 /src/lib/libssl/d1_pkt.c
parent00ff8dba92ed1b03a8b2b502f1c8509ee150189d (diff)
downloadopenbsd-d6b346577efe94c30d6ba08ca7f8feae71688a3c.tar.gz
openbsd-d6b346577efe94c30d6ba08ca7f8feae71688a3c.tar.bz2
openbsd-d6b346577efe94c30d6ba08ca7f8feae71688a3c.zip
Sort and group includes.
Diffstat (limited to 'src/lib/libssl/d1_pkt.c')
-rw-r--r--src/lib/libssl/d1_pkt.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/lib/libssl/d1_pkt.c b/src/lib/libssl/d1_pkt.c
index 7aa5aac752..83b9bf1ce2 100644
--- a/src/lib/libssl/d1_pkt.c
+++ b/src/lib/libssl/d1_pkt.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: d1_pkt.c,v 1.36 2014/10/22 15:29:31 jsing Exp $ */ 1/* $OpenBSD: d1_pkt.c,v 1.37 2014/11/16 14:12:47 jsing Exp $ */
2/* 2/*
3 * DTLS implementation written by Nagendra Modadugu 3 * DTLS implementation written by Nagendra Modadugu
4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. 4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
@@ -113,12 +113,15 @@
113 * [including the GNU Public Licence.] 113 * [including the GNU Public Licence.]
114 */ 114 */
115 115
116#include <stdio.h>
117#include <errno.h>
118#include <machine/endian.h> 116#include <machine/endian.h>
117
118#include <errno.h>
119#include <stdio.h>
120
119#include "ssl_locl.h" 121#include "ssl_locl.h"
120#include <openssl/evp.h> 122
121#include <openssl/buffer.h> 123#include <openssl/buffer.h>
124#include <openssl/evp.h>
122 125
123#include "pqueue.h" 126#include "pqueue.h"
124 127