diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-01-07 12:53:24 -0800 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-01-07 12:53:24 -0800 |
commit | 3783046f3b519533fc721472f38ccf437d2d12a5 (patch) | |
tree | c45773b7f07a6f2eda1a07934557a2153dc4aaf8 /configure.ac | |
parent | 8d6aafbb4a7f4f9748b88f5ce16675900559149e (diff) | |
download | tor-3783046f3b519533fc721472f38ccf437d2d12a5.tar.gz tor-3783046f3b519533fc721472f38ccf437d2d12a5.zip |
Use memset_s or explicit_bzero when available.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 7dfab58cf4..b62b4d36af 100644 --- a/configure.ac +++ b/configure.ac @@ -381,6 +381,7 @@ AC_CHECK_FUNCS( backtrace_symbols_fd \ clock_gettime \ eventfd \ + explicit_bzero \ timingsafe_memcmp \ flock \ ftime \ @@ -399,6 +400,7 @@ AC_CHECK_FUNCS( localtime_r \ lround \ memmem \ + memset_s \ pipe \ pipe2 \ prctl \ |