aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_ntlm_msgs.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2012-07-03 00:14:14 +0200
committerYang Tse <yangsita@gmail.com>2012-07-03 00:14:14 +0200
commite0b9d3b2c9ced971ab927f44304b783416ab9ba6 (patch)
tree2d1a9aed2c6cec4ca2185f944d4de22ebd6055ec /lib/curl_ntlm_msgs.c
parent33e19f881eec41ccf1b0960cecc326255335c463 (diff)
curl_ntlm_msgs.c: include <tchar.h> for prototypes
Diffstat (limited to 'lib/curl_ntlm_msgs.c')
-rw-r--r--lib/curl_ntlm_msgs.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c
index 0fcfec69e..0fa0c9d2c 100644
--- a/lib/curl_ntlm_msgs.c
+++ b/lib/curl_ntlm_msgs.c
@@ -33,6 +33,10 @@
#define DEBUG_ME 0
+#ifdef USE_WINDOWS_SSPI
+# include <tchar.h>
+#endif
+
#include "urldata.h"
#include "non-ascii.h"
#include "sendf.h"
@@ -42,7 +46,7 @@
#include "curl_multibyte.h"
#include "curl_memory.h"
-#if defined(USE_WINDOWS_SSPI)
+#ifdef USE_WINDOWS_SSPI
# include "curl_sspi.h"
#endif