$NetBSD: patch-ai,v 1.1 2008/04/04 01:56:16 bjs Exp $ --- src/jstypes.h.orig 2006-07-24 15:21:49.000000000 -0400 +++ src/jstypes.h @@ -387,8 +387,14 @@ typedef JSUint8 JSPackedBool; /* ** A JSWord is an integer that is the same size as a void* */ +#ifdef HAVE_INTTYPES_H +#include +typedef intptr_t JSWord; +typedef uintptr_t JSUword; +#else typedef long JSWord; typedef unsigned long JSUword; +#endif #include "jsotypes.h"