libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 969cbdf6a6ca12c1b4d2e960a37827e2fb23985e
parent a8423ab884df8a2928ecde6b1f815132759d53eb
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Tue, 30 Nov 2021 15:45:47 +0300

Added missing ifdef guard for <stdbool.h>

Diffstat:
Msrc/microhttpd/mhd_sockets.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/microhttpd/mhd_sockets.h b/src/microhttpd/mhd_sockets.h @@ -35,7 +35,9 @@ #include "mhd_options.h" #include <errno.h> +#ifdef HAVE_STDBOOL_H #include <stdbool.h> +#endif /* HAVE_STDBOOL_H */ #ifdef HAVE_UNISTD_H #include <unistd.h> #endif /* HAVE_UNISTD_H */