Re: [Qemu-devel] [PATCH 3/4] fix implicit declaration of syscall() in linux-user/syscall.c

2012-12-10 Thread Stefan Weil
Am 11.12.2012 02:23, schrieb John Spencer: On 12/10/2012 06:49 PM, Stefan Weil wrote: Am 10.12.2012 07:59, schrieb John Spencer: +#include This is a workaround for a missing declaration of function syscall in musl's unistd.h. See my comment to patch 1 for more information. thanks for not

Re: [Qemu-devel] [PATCH 3/4] fix implicit declaration of syscall() in linux-user/syscall.c

2012-12-10 Thread John Spencer
On 12/10/2012 06:49 PM, Stefan Weil wrote: Am 10.12.2012 07:59, schrieb John Spencer: +#include This is a workaround for a missing declaration of function syscall in musl's unistd.h. See my comment to patch 1 for more information. thanks for noticing! fixed in musl: http://git.musl-libc.

Re: [Qemu-devel] [PATCH 3/4] fix implicit declaration of syscall() in linux-user/syscall.c

2012-12-10 Thread Stefan Weil
Am 10.12.2012 07:59, schrieb John Spencer: Signed-off-by: John Spencer --- linux-user/syscall.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 31d5276..fabbcd7 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscal

[Qemu-devel] [PATCH 3/4] fix implicit declaration of syscall() in linux-user/syscall.c

2012-12-09 Thread John Spencer
Signed-off-by: John Spencer --- linux-user/syscall.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 31d5276..fabbcd7 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -39,6 +39,7 @@ #include #include #

[Qemu-devel] [PATCH 3/4] fix implicit declaration of syscall() in linux-user/syscall.c

2012-12-09 Thread John Spencer
>From 5d410e6e92bbd3ab3a4fadec41a3d87cb9b0feea Mon Sep 17 00:00:00 2001 From: John Spencer Date: Mon, 10 Dec 2012 06:58:48 +0100 Subject: [PATCH 3/4] fix implicit declaration of syscall() in linux-user/syscall.c Signed-off-by: John Spencer --- linux-user/syscall.c |1 + 1 files changed, 1