aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_threads.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/mhd_threads.h')
-rw-r--r--src/microhttpd/mhd_threads.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/microhttpd/mhd_threads.h b/src/microhttpd/mhd_threads.h
index dcc7b09a..14612ded 100644
--- a/src/microhttpd/mhd_threads.h
+++ b/src/microhttpd/mhd_threads.h
@@ -39,9 +39,11 @@
39#include "mhd_options.h" 39#include "mhd_options.h"
40#ifdef HAVE_STDDEF_H 40#ifdef HAVE_STDDEF_H
41# include <stddef.h> /* for size_t */ 41# include <stddef.h> /* for size_t */
42#else /* ! HAVE_STDDEF_H */ 42#elif defined(HAVE_STDLIB_H)
43# include <stdlib.h> /* for size_t */ 43# include <stdlib.h> /* for size_t */
44#endif /* ! HAVE_STDDEF_H */ 44#else /* ! HAVE_STDLIB_H */
45# include <stdio.h> /* for size_t */
46#endif /* ! HAVE_STDLIB_H */
45 47
46#if defined(MHD_USE_POSIX_THREADS) 48#if defined(MHD_USE_POSIX_THREADS)
47# undef HAVE_CONFIG_H 49# undef HAVE_CONFIG_H