All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH 1/4] fix implicit declaration of syscall() in linux-user/mmap.c
@ 2012-12-10  6:59 ` John Spencer
  0 siblings, 0 replies; 24+ messages in thread
From: John Spencer @ 2012-12-10  6:59 UTC (permalink / raw)
  To: qemu-trivial; +Cc: qemu-devel

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 Spencer <maillist-qemu@barfooze.de>

---
 linux-user/mmap.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/linux-user/mmap.c b/linux-user/mmap.c
index b412e3f..171b449 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -25,6 +25,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/mman.h>
+#include <sys/syscall.h>
 #include <linux/mman.h>
 #include <linux/unistd.h>
 
-- 
1.7.3.4



^ permalink raw reply related	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2012-12-18 16:24 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-10  6:59 [Qemu-trivial] [PATCH 1/4] fix implicit declaration of syscall() in linux-user/mmap.c John Spencer
2012-12-10  6:59 ` [Qemu-devel] " John Spencer
2012-12-10  6:59 ` [Qemu-trivial] [PATCH 2/4] fix build error on ARM due to wrong glibc check John Spencer
2012-12-10  6:59   ` [Qemu-devel] " John Spencer
2012-12-10 17:46   ` [Qemu-trivial] " Stefan Weil
2012-12-10 17:46     ` Stefan Weil
2012-12-18 16:23   ` [Qemu-trivial] " Stefan Hajnoczi
2012-12-18 16:23     ` [Qemu-devel] " Stefan Hajnoczi
2012-12-10  6:59 ` [Qemu-trivial] [PATCH 3/4] fix implicit declaration of syscall() in linux-user/syscall.c John Spencer
2012-12-10  6:59   ` [Qemu-devel] " John Spencer
2012-12-10 17:49   ` [Qemu-trivial] " Stefan Weil
2012-12-10 17:49     ` Stefan Weil
2012-12-11  1:23     ` [Qemu-trivial] " John Spencer
2012-12-11  1:23       ` John Spencer
2012-12-11  6:07       ` [Qemu-trivial] " Stefan Weil
2012-12-11  6:07         ` Stefan Weil
2012-12-10  6:59 ` [Qemu-trivial] [PATCH 4/4] linux-user/syscall.c: remove wrong forward decl of setgroups() John Spencer
2012-12-10  6:59   ` [Qemu-devel] " John Spencer
2012-12-10 17:47   ` [Qemu-trivial] " Stefan Weil
2012-12-10 17:47     ` Stefan Weil
2012-12-18 16:23   ` [Qemu-trivial] " Stefan Hajnoczi
2012-12-18 16:23     ` [Qemu-devel] " Stefan Hajnoczi
2012-12-10 17:44 ` [Qemu-trivial] [Qemu-devel] [PATCH 1/4] fix implicit declaration of syscall() in linux-user/mmap.c Stefan Weil
2012-12-10 17:44   ` Stefan Weil

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.