diff --git a/ldb/globals.c b/ldb/globals.c
index 94a33b35136fbd638b7f6b73e6d9c6fb5b46090f..ba55b3ac6feea116d73cb3f25b2cbbb2f04c8cb9 100644
--- a/ldb/globals.c
+++ b/ldb/globals.c
@@ -1,10 +1,12 @@
-/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/globals.c,v 1.3 1990/09/08 11:00:32 wlott Exp $ */
+/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/globals.c,v 1.4 1990/09/21 05:56:31 wlott Exp $ */
 
 /* Variables everybody needs to look at or frob on. */
 
 #include "lisp.h"
 #include "globals.h"
 
+char *number_stack_start;
+
 int foreign_function_call_active;
 
 #ifdef mips
diff --git a/ldb/globals.h b/ldb/globals.h
index 9bbc66da3983bf99e923e44a3cf0cb43dae79fa1..f13b600072882181f45f76258a288015165f8ed2 100644
--- a/ldb/globals.h
+++ b/ldb/globals.h
@@ -1,4 +1,4 @@
-/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/globals.h,v 1.3 1990/09/08 11:00:49 wlott Exp $ */
+/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/globals.h,v 1.4 1990/09/21 05:56:46 wlott Exp $ */
 
 #if !defined(_INCLUDE_GLOBALS_H_)
 #define _INCLUDED_GLOBALS_H_
@@ -7,6 +7,8 @@
 
 #if !defined(LANGUAGE_ASSEMBLY)
 
+extern char *number_stack_start;
+
 extern int foreign_function_call_active;
 
 #ifdef mips