Skip to content
Snippets Groups Projects
Commit 0b926db3 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

bootstrap_push_int64 need not be exported anymore.

Rev: src/bignum.c:1.39
Rev: src/bignum.h:1.24
parent a63be9e2
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
|| This file is part of Pike. For copyright information see COPYRIGHT. || This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information. || 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" #include "global.h"
...@@ -123,7 +123,7 @@ PMOD_EXPORT void convert_svalue_to_bignum(struct svalue *s) ...@@ -123,7 +123,7 @@ PMOD_EXPORT void convert_svalue_to_bignum(struct svalue *s)
} }
#ifdef INT64 #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)) if(i == DO_NOT_WARN((INT_TYPE)i))
{ {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
|| This file is part of Pike. For copyright information see COPYRIGHT. || This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information. || 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" #include "global.h"
...@@ -58,7 +58,6 @@ struct pike_string *string_from_bignum(struct object *o, int base); ...@@ -58,7 +58,6 @@ struct pike_string *string_from_bignum(struct object *o, int base);
void convert_svalue_to_bignum(struct svalue *s); void convert_svalue_to_bignum(struct svalue *s);
#ifdef INT64 #ifdef INT64
PMOD_EXPORT void bootstrap_push_int64(INT64 i);
PMOD_EXPORT void (*push_int64)(INT64 i); PMOD_EXPORT void (*push_int64)(INT64 i);
PMOD_EXPORT int (*int64_from_bignum) (INT64 *i, struct object *bignum); PMOD_EXPORT int (*int64_from_bignum) (INT64 *i, struct object *bignum);
PMOD_EXPORT void hook_in_int64_funcs ( PMOD_EXPORT void hook_in_int64_funcs (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment