diff options
| author | Mattias Andrée <maandree@kth.se> | 2016-03-14 17:56:37 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2016-03-14 17:56:37 +0100 |
| commit | b2c44d8c961090c2773f3a98d12fcafc7f5c5b2b (patch) | |
| tree | 8d7d19fd6ebd768023b3030d3e7b69d985fbf1c5 /man | |
| parent | Fix so that no workaround is required. (diff) | |
| download | libzahl-b2c44d8c961090c2773f3a98d12fcafc7f5c5b2b.tar.gz libzahl-b2c44d8c961090c2773f3a98d12fcafc7f5c5b2b.tar.bz2 libzahl-b2c44d8c961090c2773f3a98d12fcafc7f5c5b2b.tar.xz | |
Mostly optimisations
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'man')
| -rw-r--r-- | man/zcmpi.3 | 2 | ||||
| -rw-r--r-- | man/zcmpu.3 | 2 | ||||
| -rw-r--r-- | man/zseti.3 | 2 | ||||
| -rw-r--r-- | man/zsetu.3 | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/man/zcmpi.3 b/man/zcmpi.3 index eb786f8..22acf41 100644 --- a/man/zcmpi.3 +++ b/man/zcmpi.3 @@ -5,7 +5,7 @@ zcmpi - Compare a big integer and a signed integer .nf #include <zahl.h> -int zcmpi(z_t \fIa\fP, signed long long int \fIb\fP); +int zcmpi(z_t \fIa\fP, int64_t \fIb\fP); .fi .SH DESCRIPTION .B zcmpi diff --git a/man/zcmpu.3 b/man/zcmpu.3 index b4703a9..63cbf09 100644 --- a/man/zcmpu.3 +++ b/man/zcmpu.3 @@ -5,7 +5,7 @@ zcmpu - Compare a big integer and an unsigned integer .nf #include <zahl.h> -int zcmpu(z_t \fIa\fP, unsigned long long int \fIb\fP); +int zcmpu(z_t \fIa\fP, uint64_t \fIb\fP); .fi .SH DESCRIPTION .B zcmpu diff --git a/man/zseti.3 b/man/zseti.3 index 40d4aef..c2c589f 100644 --- a/man/zseti.3 +++ b/man/zseti.3 @@ -5,7 +5,7 @@ zseti - Set the value of a big integer to a signed integer. .nf #include <zahl.h> -void zseti(z_t \fIa\fP, signed long long int \fIb\fP); +void zseti(z_t \fIa\fP, int64_t \fIb\fP); .fi .SH DESCRIPTION .B zseti diff --git a/man/zsetu.3 b/man/zsetu.3 index a0598a7..62b8202 100644 --- a/man/zsetu.3 +++ b/man/zsetu.3 @@ -5,7 +5,7 @@ zsetu - Set the value of a big integer to an unsigned integer. .nf #include <zahl.h> -void zsetu(z_t \fIa\fP, unsigned long long int \fIb\fP); +void zsetu(z_t \fIa\fP, uint64_t \fIb\fP); .fi .SH DESCRIPTION .B zseti |
