summaryrefslogtreecommitdiff
path: root/fipstest.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-06-21 15:59:58 -0400
committerGitHub <noreply@github.com>2016-06-21 15:59:58 -0400
commit857676283653f0933c84f811b41b598a398ba922 (patch)
tree34175f8452f8233854f140b21eaaae73caa5b1a0 /fipstest.cpp
parenteb52134f03baceb9d28946a715e2f248b3bb0bac (diff)
parent109f5a7a3218707fd6f71ff8f5ef85b1ad42689e (diff)
downloadcryptopp-git-857676283653f0933c84f811b41b598a398ba922.tar.gz
Merge pull request #151 from bretthall/master
Fixed linker error when using VS2015 /MD
Diffstat (limited to 'fipstest.cpp')
-rw-r--r--fipstest.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/fipstest.cpp b/fipstest.cpp
index 1050892f..6edfa5b1 100644
--- a/fipstest.cpp
+++ b/fipstest.cpp
@@ -34,7 +34,11 @@
#else
#define _CRT_DEBUGGER_HOOK __crt_debugger_hook
#endif
+#if _MSC_VER < 1900
extern "C" {_CRTIMP void __cdecl _CRT_DEBUGGER_HOOK(int);}
+#else
+extern "C" {void __cdecl _CRT_DEBUGGER_HOOK(int); }
+#endif
#endif
#endif