Skip to content
Snippets Groups Projects
Commit 35589143 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Made bootstrap_push_int64() externally visible.

Rev: src/bignum.c:1.37
Rev: src/bignum.h:1.22
parent 0477c19a
Branches
Tags
No related merge requests found
......@@ -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))
{
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment