aboutsummaryrefslogtreecommitdiff
path: root/host-utils.h
diff options
context:
space:
mode:
authorj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-05 13:16:23 +0000
committerj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-05 13:16:23 +0000
commit05e1d83049e295383d40c5d9015c0e0f0f672baf (patch)
tree21697d91fc0b3a9c684163b9d3b4eeee3ea79347 /host-utils.h
parent084ed5cc90ad533dbf5532092256fc5a499b91e3 (diff)
Fix muls64 prototype to match the actual implementation.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3537 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'host-utils.h')
-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