ref: e3d615c2d58020492dda10a84ac06977a76035ef
parent: 7b85c55864583c6955e69f192795a66312b6aabd
author: giles <giles@ded80894-8fb9-0310-811b-c03f3676ab4d>
date: Wed May 7 12:00:32 EDT 2003
MacOS generally has stdint.h available (Apple's tools on MacOS X or recent Metrowerks CodeWarrior) but may not be using the autoconf detection. Include it in such cases. (recommitted after repository became corrupt. original change date Wed Apr 16 15:48:14 2003) git-svn-id: http://svn.ghostscript.com/jbig2dec/trunk@236 ded80894-8fb9-0310-811b-c03f3676ab4d
--- a/os_types.h
+++ b/os_types.h
@@ -25,6 +25,6 @@
#include "config_win32.h"
#endif
-#ifdef HAVE_STDINT_H
++#if defined(HAVE_STDINT_H) || defined(__MACOS__)
#include <stdint.h>
#endif