From 20329d958a699324e9fa27140f035c2795ab8bf4 Mon Sep 17 00:00:00 2001 From: jgarcia Date: Sat, 8 Sep 2007 09:03:43 +0000 Subject: [PATCH] Solaris does not have stdint.h --- src/h/ecl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/h/ecl.h b/src/h/ecl.h index 10f0b2529..4df1ffa1e 100644 --- a/src/h/ecl.h +++ b/src/h/ecl.h @@ -17,7 +17,7 @@ #include /* NULL, ptrdiff_t */ #include /* va_list */ #include /* setjmp and buffers */ -#if !defined(_MSC_VER) +#if !defined(_MSC_VER) && !defined(__sun) #include /* int8_t and friends */ #else typedef char int8_t;