aboutsummaryrefslogtreecommitdiffstats
path: root/src/zcmpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zcmpu.c')
-rw-r--r--src/zcmpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zcmpu.c b/src/zcmpu.c
index 577a0f4..0c7d68e 100644
--- a/src/zcmpu.c
+++ b/src/zcmpu.c
@@ -1,5 +1,5 @@
/* See LICENSE file for copyright and license details. */
-#include "internals"
+#include "internals.h"
int
@@ -9,6 +9,6 @@ zcmpu(z_t a, unsigned long long int b)
return zsignum(a);
if (zsignum(a) <= 0)
return -1;
- zsetu(zahl_tmp_cmp, b);
- return zcmp(a, zahl_tmp_cmp);
+ zsetu(libzahl_tmp_cmp, b);
+ return zcmp(a, libzahl_tmp_cmp);
}