blob: b0929b3ccdd8d564266f0d4af7ba44ab42518efc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$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 <stdint.h>
+typedef intptr_t JSWord;
+typedef uintptr_t JSUword;
+#else
typedef long JSWord;
typedef unsigned long JSUword;
+#endif
#include "jsotypes.h"
|