summaryrefslogtreecommitdiff
path: root/cmake/dependencies/system/explicit_bzero.cmake
blob: 89ab3abc57029a6c40787275c4c61d8c8dcd1163 (plain)
1
2
3
4
# Check for explicit_bzero in string.h
# glibc requires _DEFAULT_SOURCE to expose it; harmless on other platforms
list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_DEFAULT_SOURCE)
check_symbol_exists(explicit_bzero "string.h" HAVE_EXPLICIT_BZERO)