Cleanup symbol clashes, stdlib header

This commit is contained in:
Howard Chu 2016-01-04 21:01:22 +00:00
parent 10cc6a8593
commit fcf31f3ff3
2 changed files with 5 additions and 2 deletions

View file

@ -141,7 +141,7 @@ set(common_src
set(compat_src)
foreach (symbol IN ITEMS ctime_r gmtime_r inet_aton inet_ntop inet_pton isblank malloc memcmp memmove snprintf strlcat strlcpy strptime explicit_bzero arc4random arc4random_uniform sha512 reallocarray)
foreach (symbol IN ITEMS ctime_r gmtime_r inet_aton inet_ntop inet_pton isblank malloc memmove snprintf strlcat strlcpy strptime explicit_bzero arc4random arc4random_uniform reallocarray)
string(TOUPPER "${symbol}" upper_sym)
if (NOT HAVE_${upper_sym})
list(APPEND compat_src

View file

@ -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