Merge pull request #206 from duyaokun/fix-compile-cjson-error

Fixed compilation error in src/cjson.c observed in Visual Studio 2013.

This problem didn't cause breakage on any other platform, but this change should have been present anyway.
This commit is contained in:
Bruce A. Mah 2014-09-16 12:58:53 -07:00
commit dd2968f21e

View File

@ -30,6 +30,7 @@
#include <float.h>
#include <limits.h>
#include <ctype.h>
#include <stdint.h>
#include <sys/types.h>
#include "cjson.h"