Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
fb0e682d
Commit
fb0e682d
authored
10 years ago
by
Per Hedbor
Browse files
Options
Downloads
Patches
Plain Diff
Bignumns always exists, step 1.
Always include gmp.h, it always exists now.
parent
d3153992
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/bignum.h
+1
-3
1 addition, 3 deletions
src/bignum.h
with
1 addition
and
3 deletions
src/bignum.h
+
1
−
3
View file @
fb0e682d
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
#ifndef BIGNUM_H
#ifndef BIGNUM_H
#define BIGNUM_H
#define BIGNUM_H
#include
<gmp.h>
#include
"global.h"
#include
"global.h"
#include
"pike_int_types.h"
#include
"pike_int_types.h"
...
@@ -367,9 +368,6 @@ PMOD_EXPORT extern void (*reduce_stack_top_bignum) (void);
...
@@ -367,9 +368,6 @@ PMOD_EXPORT extern void (*reduce_stack_top_bignum) (void);
PMOD_EXPORT
extern
void
(
*
push_ulongest
)
(
unsigned
LONGEST
i
);
PMOD_EXPORT
extern
void
(
*
push_ulongest
)
(
unsigned
LONGEST
i
);
PMOD_EXPORT
extern
int
(
*
ulongest_from_bignum
)
(
unsigned
LONGEST
*
i
,
PMOD_EXPORT
extern
int
(
*
ulongest_from_bignum
)
(
unsigned
LONGEST
*
i
,
struct
object
*
bignum
);
struct
object
*
bignum
);
#ifndef __MPN
#define MP_INT void
#endif
PMOD_EXPORT
extern
int
(
*
mpz_from_svalue
)(
MP_INT
*
,
struct
svalue
*
);
PMOD_EXPORT
extern
int
(
*
mpz_from_svalue
)(
MP_INT
*
,
struct
svalue
*
);
PMOD_EXPORT
extern
void
(
*
push_bignum
)(
MP_INT
*
);
PMOD_EXPORT
extern
void
(
*
push_bignum
)(
MP_INT
*
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment