#undef recv
#ifdef _WIN32
-# ifdef UNICODE
-# undef _tcsdup
-# else
-# undef _tcsdup
-# endif
+#undef _tcsdup
#endif
#undef socket
#define free(ptr) Curl_cfree(ptr)
#ifdef _WIN32
-# ifdef UNICODE
-# undef _tcsdup
-# define _tcsdup(ptr) Curl_cwcsdup(ptr)
-# else
-# undef _tcsdup
-# define _tcsdup(ptr) Curl_cstrdup(ptr)
-# endif
+#undef _tcsdup
+#ifdef UNICODE
+#define _tcsdup(ptr) Curl_cwcsdup(ptr)
+#else
+#define _tcsdup(ptr) Curl_cstrdup(ptr)
#endif
+#endif /* _WIN32 */
#endif /* CURLDEBUG */
#endif /* HEADER_CURL_MEMORY_H */
#define recv(a,b,c,d) curl_dbg_recv(a,b,c,d, __LINE__, __FILE__)
#ifdef _WIN32
-# ifdef UNICODE
-# undef _tcsdup
-# define _tcsdup(ptr) curl_dbg_wcsdup(ptr, __LINE__, __FILE__)
-# else
-# undef _tcsdup
-# define _tcsdup(ptr) curl_dbg_strdup(ptr, __LINE__, __FILE__)
-# endif
+#undef _tcsdup
+#ifdef UNICODE
+#define _tcsdup(ptr) curl_dbg_wcsdup(ptr, __LINE__, __FILE__)
+#else
+#define _tcsdup(ptr) curl_dbg_strdup(ptr, __LINE__, __FILE__)
#endif
+#endif /* _WIN32 */
#undef socket
#define socket(domain,type,protocol) \