Solaris does not have stdint.h

This commit is contained in:
jgarcia 2007-09-08 09:03:43 +00:00
parent a9ac64e495
commit 20329d958a

View file

@ -17,7 +17,7 @@
#include <stddef.h> /* NULL, ptrdiff_t */
#include <stdarg.h> /* va_list */
#include <setjmp.h> /* setjmp and buffers */
#if !defined(_MSC_VER)
#if !defined(_MSC_VER) && !defined(__sun)
#include <stdint.h> /* int8_t and friends */
#else
typedef char int8_t;