From 355891431d8293bef9ea6fa11cc51cd3c151df3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sat, 29 Mar 2003 18:12:17 +0100 Subject: [PATCH] Made bootstrap_push_int64() externally visible. Rev: src/bignum.c:1.37 Rev: src/bignum.h:1.22 --- src/bignum.c | 4 ++-- src/bignum.h | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/bignum.c b/src/bignum.c index 215b12517b..7b1c70fba1 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 035876a229..6e7bebf4b4 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 -- GitLab