qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

fix the prototype of muls64/mulu64

The prototypes of muls64/mulu64 in host-utils.h should match the
definitions in host-utils.c

Signed-off-by: Lijun Pan <ljp@linux.ibm.com>
Message-Id: <20200701234344.91843-10-ljp@linux.ibm.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>

authored by

Lijun Pan and committed by
Laurent Vivier
db7b62e7 eb6490f5

+2 -2
+2 -2
include/qemu/host-utils.h
··· 77 77 } 78 78 } 79 79 #else 80 - void muls64(uint64_t *phigh, uint64_t *plow, int64_t a, int64_t b); 81 - void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b); 80 + void muls64(uint64_t *plow, uint64_t *phigh, int64_t a, int64_t b); 81 + void mulu64(uint64_t *plow, uint64_t *phigh, uint64_t a, uint64_t b); 82 82 int divu128(uint64_t *plow, uint64_t *phigh, uint64_t divisor); 83 83 int divs128(int64_t *plow, int64_t *phigh, int64_t divisor); 84 84