From 5ecfd2355f8a2fbdcb1109c5c2bbf60e46025bbe Mon Sep 17 00:00:00 2001 From: "brendan%mozilla.org" Date: Thu, 13 Jul 2000 05:56:28 +0000 Subject: [PATCH] Why didn't the lack of this break Linux, where I tested? git-svn-id: svn://10.0.0.236/trunk@74160 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/js/src/jslock.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mozilla/js/src/jslock.h b/mozilla/js/src/jslock.h index 05f66e1f6bb..89e64788539 100644 --- a/mozilla/js/src/jslock.h +++ b/mozilla/js/src/jslock.h @@ -41,6 +41,9 @@ #include "prcvar.h" #include "jshash.h" /* Added by JSIFY */ +#include "jsprvtd.h" /* for JSScope, etc. */ +#include "jspubtd.h" /* for JSRuntime, etc. */ + #define Thin_GetWait(W) ((jsword)(W) & 0x1) #define Thin_SetWait(W) ((jsword)(W) | 0x1) #define Thin_RemoveWait(W) ((jsword)(W) & ~0x1)