aboutsummaryrefslogtreecommitdiffstats
path: root/src/internals.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-05-06 13:48:43 +0200
committerMattias Andrée <maandree@kth.se>2016-05-06 13:48:43 +0200
commitb0e210a02b8576828ac64e8b97bd565fd28c8748 (patch)
tree02e74578d0543b40718ea9ae60a4b1295630a61d /src/internals.h
parentzsqr is no longer slower than zmul, they are identical (diff)
downloadlibzahl-b0e210a02b8576828ac64e8b97bd565fd28c8748.tar.gz
libzahl-b0e210a02b8576828ac64e8b97bd565fd28c8748.tar.bz2
libzahl-b0e210a02b8576828ac64e8b97bd565fd28c8748.tar.xz
Make zmul and zsqr (calls low-level functions) inline
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/internals.h')
-rw-r--r--src/internals.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/internals.h b/src/internals.h
index 0690ad3..f97a789 100644
--- a/src/internals.h
+++ b/src/internals.h
@@ -107,9 +107,6 @@ extern void *libzahl_temp_allocation;
#define zmemcpy(d, s, n) libzahl_memcpy(d, s, n)
#define zmemset(a, v, n) libzahl_memset(a, v, n)
-void zmul_impl(z_t a, z_t b, z_t c);
-void zsqr_impl(z_t a, z_t b);
-
static inline int
zzero1(z_t a, z_t b)
{