aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-06 22:25:43 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-06 22:25:51 +0300
commitf1e6de457d33cea1c8e9a473c90bb415f046a525 (patch)
tree14770b1638b0cdb1cb3f532ce8b582cbe32d744e /src/microhttpd/internal.h
parentcd5ad7aaadd8f169f79ba3564d49d7f2889093b8 (diff)
downloadlibmicrohttpd-f1e6de457d33cea1c8e9a473c90bb415f046a525.tar.gz
libmicrohttpd-f1e6de457d33cea1c8e9a473c90bb415f046a525.zip
internal.h: fixed static function placement
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 829f225d..26f5d43b 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -2440,8 +2440,6 @@ MHD_check_response_header_token_ci (const struct MHD_Response *response,
2440void 2440void
2441internal_suspend_connection_ (struct MHD_Connection *connection); 2441internal_suspend_connection_ (struct MHD_Connection *connection);
2442 2442
2443#endif
2444
2445 2443
2446/** 2444/**
2447 * Trace up to and return master daemon. If the supplied daemon 2445 * Trace up to and return master daemon. If the supplied daemon
@@ -2463,3 +2461,6 @@ MHD_get_master (struct MHD_Daemon *const daemon)
2463 2461
2464 return ret; 2462 return ret;
2465} 2463}
2464
2465
2466#endif