diff --git a/src/bignum.c b/src/bignum.c
index 0facc6fc8e4ff00b452699489ec219a176899f1f..7d5d1abd7b52223a7b0ed8f2d0f5f60b900434d7 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.38 2003/04/02 00:38:31 mast Exp $
+|| $Id: bignum.c,v 1.39 2003/04/02 20:54:00 mast Exp $
 */
 
 #include "global.h"
@@ -123,7 +123,7 @@ PMOD_EXPORT void convert_svalue_to_bignum(struct svalue *s)
 }
 
 #ifdef INT64
-PMOD_EXPORT void bootstrap_push_int64 (INT64 i)
+static 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 59e54b4ccc0abbd0e4efbd4520814059132afa58..23b544c9a23ab7b827c462fb1156de91c41535d8 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.23 2003/04/02 00:38:31 mast Exp $
+|| $Id: bignum.h,v 1.24 2003/04/02 20:54:00 mast Exp $
 */
 
 #include "global.h"
@@ -58,7 +58,6 @@ 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);
 PMOD_EXPORT void hook_in_int64_funcs (