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

2012-12-10 Thread Stefan Weil
Am 10.12.2012 07:59, schrieb John Spencer: on glibc, this header is getting pulled in automatically via another header, however on musl we need to include it explicitly. linux-user/mmap.c:705:9: warning: implicit declaration of function 'syscall' linux-user/mmap.c:705:9: warning: nested extern

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

2012-12-09 Thread John Spencer
From f293c406dd2fe751244f2beef4782ccec65fd307 Mon Sep 17 00:00:00 2001 From: John Spencer maillist-q...@barfooze.de Date: Mon, 10 Dec 2012 06:49:57 +0100 Subject: [PATCH 1/4] fix implicit declaration of syscall() in linux-user/mmap.c on glibc, this header is getting pulled in automatically via

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

2012-12-09 Thread John Spencer
on glibc, this header is getting pulled in automatically via another header, however on musl we need to include it explicitly. linux-user/mmap.c:705:9: warning: implicit declaration of function 'syscall' linux-user/mmap.c:705:9: warning: nested extern declaration of 'syscall' Signed-off-by: John