Commit 66d15954 by Jacques Germishuys

Solaris doesn't necessarily have stdint.h, use inttypes.h

parent 59e3f45b
...@@ -40,6 +40,8 @@ typedef __int64 int64_t; ...@@ -40,6 +40,8 @@ typedef __int64 int64_t;
typedef unsigned __int64 uint64_t; typedef unsigned __int64 uint64_t;
typedef SIZE_T size_t; typedef SIZE_T size_t;
typedef SSIZE_T ssize_t; typedef SSIZE_T ssize_t;
#elif defined(__sun) || defined(__sun__)
#include <sys/inttypes.h>
#else #else
#include <stdint.h> #include <stdint.h>
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment