aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-10-21 19:31:01 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-10-21 19:31:01 +0300
commit276535e5ec0fc9eb13d6821cdacf6c297fdd8c09 (patch)
treea03c43f74cd162901e3150c21ec95a4dfa742352
parent4ebcd58de55e5c1ac7f9aa3ad6d64c1f359931f1 (diff)
downloadlibmicrohttpd-276535e5ec0fc9eb13d6821cdacf6c297fdd8c09.tar.gz
libmicrohttpd-276535e5ec0fc9eb13d6821cdacf6c297fdd8c09.zip
mhd_send: fixed order of includes
-rw-r--r--src/microhttpd/mhd_send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index 50fa5483..006525d2 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -36,6 +36,7 @@
36 * and every place where sendfile(), sendfile64(), setsockopt() 36 * and every place where sendfile(), sendfile64(), setsockopt()
37 * are used. */ 37 * are used. */
38 38
39#include "mhd_send.h"
39#ifdef MHD_LINUX_SOLARIS_SENDFILE 40#ifdef MHD_LINUX_SOLARIS_SENDFILE
40#include <sys/sendfile.h> 41#include <sys/sendfile.h>
41#endif /* MHD_LINUX_SOLARIS_SENDFILE */ 42#endif /* MHD_LINUX_SOLARIS_SENDFILE */
@@ -48,7 +49,6 @@
48/* For FreeBSD version identification */ 49/* For FreeBSD version identification */
49#include <sys/param.h> 50#include <sys/param.h>
50#endif /* HAVE_SYS_PARAM_H */ 51#endif /* HAVE_SYS_PARAM_H */
51#include "mhd_send.h"
52 52
53 53
54/** 54/**