From ff02dc8f10deeb6c7f333c5fa82939027fa3e661 Mon Sep 17 00:00:00 2001 From: Alexander Boettcher Date: Tue, 24 Sep 2013 14:46:08 +0200 Subject: [PATCH] x86emu: avoid compiler warning --- libports/include/x86emu/sys/types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libports/include/x86emu/sys/types.h b/libports/include/x86emu/sys/types.h index 514ae916e..5ac791da9 100644 --- a/libports/include/x86emu/sys/types.h +++ b/libports/include/x86emu/sys/types.h @@ -22,4 +22,6 @@ typedef genode_uint32_t uint32_t; typedef genode_int64_t int64_t; typedef genode_uint64_t uint64_t; +int abs(int j); + #define NULL (void*)0