aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-07 21:51:33 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-04-11 12:38:47 +0300
commit8a7c20f79226f92417a340c9a1bc8d0371f10cdd (patch)
treea7e0ec63bf621d939d3f14e218833f4fcf0b6478 /src
parent255e71aa81b864d685c2ac8161ebf1e2c0a3fe20 (diff)
downloadlibmicrohttpd-8a7c20f79226f92417a340c9a1bc8d0371f10cdd.tar.gz
libmicrohttpd-8a7c20f79226f92417a340c9a1bc8d0371f10cdd.zip
Added missing '_MHD_EXTERN' to MHD_run_wait()
Diffstat (limited to 'src')
-rw-r--r--src/include/microhttpd.h2
-rw-r--r--src/microhttpd/daemon.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index a4ba9bf1..5eda9845 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -2726,7 +2726,7 @@ MHD_run (struct MHD_Daemon *daemon);
2726 * @note Available since #MHD_VERSION 0x00097206 2726 * @note Available since #MHD_VERSION 0x00097206
2727 * @ingroup event 2727 * @ingroup event
2728 */ 2728 */
2729enum MHD_Result 2729_MHD_EXTERN enum MHD_Result
2730MHD_run_wait (struct MHD_Daemon *daemon, 2730MHD_run_wait (struct MHD_Daemon *daemon,
2731 int32_t millisec); 2731 int32_t millisec);
2732 2732
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 59eaf953..7f814ec0 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -5094,7 +5094,7 @@ MHD_run (struct MHD_Daemon *daemon)
5094 * @note Available since #MHD_VERSION 0x00097206 5094 * @note Available since #MHD_VERSION 0x00097206
5095 * @ingroup event 5095 * @ingroup event
5096 */ 5096 */
5097enum MHD_Result 5097_MHD_EXTERN enum MHD_Result
5098MHD_run_wait (struct MHD_Daemon *daemon, 5098MHD_run_wait (struct MHD_Daemon *daemon,
5099 int32_t millisec) 5099 int32_t millisec)
5100{ 5100{