blob: bdcd7c97a4d14166a027d6c72f668400913c416c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
diff --git a/include/ncconfigure.h b/include/ncconfigure.h
index 2c5b2c8..d397790 100644
--- a/include/ncconfigure.h
+++ b/include/ncconfigure.h
@@ -25,20 +25,20 @@ missing functions should be
defined and missing types defined.
*/
-#ifndef HAVE_STRDUP
+#ifndef strdup
extern char* strdup(const char*);
#endif
/* handle null arguments */
#ifndef nulldup
-#ifdef HAVE_STRDUP
+#ifdef strdup
#define nulldup(s) ((s)==NULL?NULL:strdup(s))
#else
char *nulldup(const char* s);
#endif
#endif
-#ifdef _MSC_VER
+#ifdef _WIN32
#ifndef HAVE_SSIZE_T
#include <basetsd.h>
typedef SSIZE_T ssize_t;
|