From b86349ad725a18fcccb1d5998b1df96ba0ddc8cb Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 3 Dec 2010 09:11:11 -0700 Subject: [PATCH] include to get intptr_t --- src/racket/mzconfig.h.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/racket/mzconfig.h.in b/src/racket/mzconfig.h.in index 5be332ca36..7d7a37d63d 100644 --- a/src/racket/mzconfig.h.in +++ b/src/racket/mzconfig.h.in @@ -28,6 +28,9 @@ /* Whether `uintptr_t' is available. */ #undef HAVE_UINTPTR_T +#ifdef HAVE_INTPTR_T +# include +#endif #ifndef HAVE_INTPTR_T typedef long intptr_t; #endif