diff --git a/src/bignum.c b/src/bignum.c
index 215b12517b68d0e403e4724d195c7343f654b4bc..7b1c70fba13a290ebd48160a3c3c9e4f7cd0de78 100644
--- a/src/bignum.c
+++ b/src/bignum.c
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: bignum.c,v 1.36 2003/03/28 15:53:12 mast Exp $
+|| $Id: bignum.c,v 1.37 2003/03/29 17:12:17 grubba Exp $
 */
 
 #include "global.h"
@@ -123,7 +123,7 @@ PMOD_EXPORT void convert_svalue_to_bignum(struct svalue *s)
 }
 
 #ifdef INT64
-static void bootstrap_push_int64 (INT64 i)
+PMOD_EXPORT void bootstrap_push_int64 (INT64 i)
 {
   if(i == DO_NOT_WARN((INT_TYPE)i))
   {
diff --git a/src/bignum.h b/src/bignum.h
index 035876a229f123df7eb934150b9384dbe4d98a89..6e7bebf4b48b8abc06b26f756783faf0e5e9059a 100644
--- a/src/bignum.h
+++ b/src/bignum.h
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: bignum.h,v 1.21 2003/03/28 23:39:01 mast Exp $
+|| $Id: bignum.h,v 1.22 2003/03/29 17:12:17 grubba Exp $
 */
 
 #include "global.h"
@@ -58,6 +58,7 @@ struct pike_string *string_from_bignum(struct object *o, int base);
 void convert_svalue_to_bignum(struct svalue *s);
 
 #ifdef INT64
+PMOD_EXPORT void bootstrap_push_int64(INT64 i);
 PMOD_EXPORT void (*push_int64)(INT64 i);
 PMOD_EXPORT int (*int64_from_bignum) (INT64 *i, struct object *bignum);
 #else