aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-05-06 19:00:44 +0200
committerMattias Andrée <maandree@kth.se>2016-05-06 19:00:44 +0200
commit4e659044778dfd05a5f5d2b41611e7737a0eb825 (patch)
treedc0cb41116b3ff8024bb2c48e26b43bc8c3a4a14 /src
parentMake zmul and zsqr (calls low-level functions) inline (diff)
downloadlibzahl-4e659044778dfd05a5f5d2b41611e7737a0eb825.tar.gz
libzahl-4e659044778dfd05a5f5d2b41611e7737a0eb825.tar.bz2
libzahl-4e659044778dfd05a5f5d2b41611e7737a0eb825.tar.xz
Make zdiv and zmod (calls zdivmod) inline
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src')
-rw-r--r--src/zdiv.c9
-rw-r--r--src/zmod.c9
2 files changed, 0 insertions, 18 deletions
diff --git a/src/zdiv.c b/src/zdiv.c
deleted file mode 100644
index 5566bb1..0000000
--- a/src/zdiv.c
+++ /dev/null
@@ -1,9 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include "internals.h"
-
-
-void
-zdiv(z_t a, z_t b, z_t c)
-{
- zdivmod(a, libzahl_tmp_div, b, c);
-}
diff --git a/src/zmod.c b/src/zmod.c
deleted file mode 100644
index 5807e00..0000000
--- a/src/zmod.c
+++ /dev/null
@@ -1,9 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include "internals.h"
-
-
-void
-zmod(z_t a, z_t b, z_t c)
-{
- zdivmod(libzahl_tmp_mod, a, b, c);
-}