Merge pull request #2503 from jacquesg/solaris-http-parser

Solaris doesn't necessarily have stdint.h, use inttypes.h
This commit is contained in:
Vicent Marti 2014-08-05 20:28:22 +02:00
commit e0af2517bf

View File

@ -40,6 +40,8 @@ typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
typedef SIZE_T size_t;
typedef SSIZE_T ssize_t;
#elif defined(__sun) || defined(__sun__)
#include <sys/inttypes.h>
#else
#include <stdint.h>
#endif