diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-07-12 15:02:43 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-07-12 15:02:43 -0400 |
commit | 9f21c85e049f3c2bc65c8edb88d540f43814b522 (patch) | |
tree | 0249d0f8d326c00710e1c9e4cc443a259bd35503 /src | |
parent | d8352646900c6316af8e2967742ce6a438b04221 (diff) | |
download | tor-9f21c85e049f3c2bc65c8edb88d540f43814b522.tar.gz tor-9f21c85e049f3c2bc65c8edb88d540f43814b522.zip |
Dammit, autoconf!
Diffstat (limited to 'src')
-rw-r--r-- | src/common/compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/compat.c b/src/common/compat.c index 69c47052c8..a32a1af1d6 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -73,13 +73,13 @@ #include <conio.h> #include <wchar.h> /* Some mingw headers lack these. :p */ -#ifndef HAVE_DECL__GETWCH +#if defined(HAVE_DECL__GETWCH) && !HAVE_DECL__GETWCH wint_t _getwch(void); #endif #ifndef WEOF #define WEOF (wchar_t)(0xFFFF) #endif -#ifndef HAVE_DECL_SECUREZEROMEMORY +#if defined(HAVE_DECL_SECUREZEROMEMORY) && !HAVE_DECL_SECUREZEROMEMORY PVOID SecureZeroMemory(PVOID ptr, SIZE_T cnt); #endif #elif defined(HAVE_READPASSPHRASE_H) |