diff options
author | Eric Haszlakiewicz <erh+git@nimenees.com> | 2016-05-23 02:37:09 +0000 |
---|---|---|
committer | Eric Haszlakiewicz <erh+git@nimenees.com> | 2016-05-23 02:37:09 +0000 |
commit | 5e4e5f7d9df01084b025d1fc619ca9ce9dcceef3 (patch) | |
tree | b7602ed8c4bac3c37e286b0af9ea5c6726619ad8 | |
parent | f4ca1325ae3641fe7507ce72fd075ae68d2ce09b (diff) | |
download | json-c-5e4e5f7d9df01084b025d1fc619ca9ce9dcceef3.tar.gz |
Issue #205: use _strdup instead of strdup on Windows.
-rw-r--r-- | config.h.win32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.h.win32 b/config.h.win32 index de6bc3c..e721aaf 100644 --- a/config.h.win32 +++ b/config.h.win32 @@ -91,7 +91,7 @@ #define HAVE_STRCASECMP 1
/* Define to 1 if you have the `strdup' function. */
-#define HAVE_STRDUP 1
+#define HAVE_STRDUP 0
/* Define to 1 if you have the `strerror' function. */
#define HAVE_STRERROR 1
|