aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--host-utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/host-utils.h b/host-utils.h
index 234a062182..dafd0329cc 100644
--- a/host-utils.h
+++ b/host-utils.h
@@ -41,7 +41,7 @@ static always_inline void muls64 (uint64_t *plow, uint64_t *phigh,
: "a" (a), "0" (b));
}
#else
-void muls64(int64_t *phigh, int64_t *plow, int64_t a, int64_t b);
+void muls64(uint64_t *phigh, uint64_t *plow, int64_t a, int64_t b);
void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b);
#endif