aboutsummaryrefslogtreecommitdiffstats
path: root/src/zxor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zxor.c')
-rw-r--r--src/zxor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zxor.c b/src/zxor.c
index 74cda0c..f570fdf 100644
--- a/src/zxor.c
+++ b/src/zxor.c
@@ -1,5 +1,5 @@
/* See LICENSE file for copyright and license details. */
-#include "internals"
+#include "internals.h"
void
@@ -47,5 +47,5 @@ zxor(z_t a, z_t b, z_t c)
a->chars[n] ^= b->chars[n];
}
- SET_SIGNUM(a, 1 - 2 * ((zsignum(b) ^ zsignum(c)) < 0);
+ SET_SIGNUM(a, 1 - 2 * ((zsignum(b) ^ zsignum(c)) < 0));
}