Merge pull request #498 from AllenX2018/fix-issue441

fix issue #441: remove strtod definition in strconv.c
This commit is contained in:
Petri Lehtinen 2019-10-21 08:51:36 +03:00 committed by GitHub
commit 79075d5393
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,9 +3,6 @@
#include <stdio.h>
#include <string.h>
#include <math.h>
#ifdef __MINGW32__
#undef __NO_ISOCEXT /* ensure stdlib.h will declare prototypes for mingw own 'strtod' replacement, called '__strtod' */
#endif
#include "jansson_private.h"
#include "strbuffer.h"
@ -14,10 +11,6 @@
#include <jansson_private_config.h>
#endif
#ifdef __MINGW32__
#define strtod __strtod
#endif
#if JSON_HAVE_LOCALECONV
#include <locale.h>