aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-11-30 15:45:47 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-12-01 15:05:56 +0300
commit969cbdf6a6ca12c1b4d2e960a37827e2fb23985e (patch)
tree0eb7f5c49fec5b51fcc4433740a71fa374069cac
parenta8423ab884df8a2928ecde6b1f815132759d53eb (diff)
downloadlibmicrohttpd-969cbdf6a6ca12c1b4d2e960a37827e2fb23985e.tar.gz
libmicrohttpd-969cbdf6a6ca12c1b4d2e960a37827e2fb23985e.zip
Added missing ifdef guard for <stdbool.h>
-rw-r--r--src/microhttpd/mhd_sockets.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/microhttpd/mhd_sockets.h b/src/microhttpd/mhd_sockets.h
index 35fdf6b4..ce9740e6 100644
--- a/src/microhttpd/mhd_sockets.h
+++ b/src/microhttpd/mhd_sockets.h
@@ -35,7 +35,9 @@
35#include "mhd_options.h" 35#include "mhd_options.h"
36 36
37#include <errno.h> 37#include <errno.h>
38#ifdef HAVE_STDBOOL_H
38#include <stdbool.h> 39#include <stdbool.h>
40#endif /* HAVE_STDBOOL_H */
39#ifdef HAVE_UNISTD_H 41#ifdef HAVE_UNISTD_H
40#include <unistd.h> 42#include <unistd.h>
41#endif /* HAVE_UNISTD_H */ 43#endif /* HAVE_UNISTD_H */