diff options
author | Howard Chu <hyc@symas.com> | 2016-01-04 21:01:22 +0000 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2016-01-11 23:09:50 +0000 |
commit | fcf31f3ff3c5325b767f1ff9e0c41de6881fbdc2 (patch) | |
tree | 5c6daa88e19a4317bd92a102a7895d501bb57a8f /external/unbound/config.h.cmake.in | |
parent | Merge branch 'LMDB-tweaks' (diff) | |
download | monero-fcf31f3ff3c5325b767f1ff9e0c41de6881fbdc2.tar.xz |
Cleanup symbol clashes, stdlib header
Diffstat (limited to '')
-rw-r--r-- | external/unbound/config.h.cmake.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/external/unbound/config.h.cmake.in b/external/unbound/config.h.cmake.in index 9658c8693..87c282f25 100644 --- a/external/unbound/config.h.cmake.in +++ b/external/unbound/config.h.cmake.in @@ -781,8 +781,11 @@ #endif #include <assert.h> -#if STDC_HEADERS +#ifdef HAVE_STDLIB_H #include <stdlib.h> +#endif + +#if STDC_HEADERS #include <stddef.h> #endif |