include <stdint.h> to get intptr_t

This commit is contained in:
Matthew Flatt 2010-12-03 09:11:11 -07:00
parent 8b8dd77ad6
commit b86349ad72

View File

@ -28,6 +28,9 @@
/* Whether `uintptr_t' is available. */
#undef HAVE_UINTPTR_T
#ifdef HAVE_INTPTR_T
# include <stdint.h>
#endif
#ifndef HAVE_INTPTR_T
typedef long intptr_t;
#endif