qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT 28e738d] Fix Sparse warning about missing prototy


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT 28e738d] Fix Sparse warning about missing prototype
Date: Mon, 10 Aug 2009 21:48:04 -0000

From: Blue Swirl <address@hidden>

Signed-off-by: Blue Swirl <address@hidden>

diff --git a/bsd-user/elfload.c b/bsd-user/elfload.c
index 678f3e6..48ec4ac 100644
--- a/bsd-user/elfload.c
+++ b/bsd-user/elfload.c
@@ -545,8 +545,6 @@ static inline void memcpy_fromfs(void * to, const void * 
from, unsigned long n)
         memcpy(to, from, n);
 }
 
-extern unsigned long x86_stack_size;
-
 static int load_aout_interp(void * exptr, int interp_fd);
 
 #ifdef BSWAP_NEEDED
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 822a214..d375611 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -193,6 +193,9 @@ void mmap_fork_start(void);
 void mmap_fork_end(int child);
 #endif
 
+/* main.c */
+extern unsigned long x86_stack_size;
+
 /* user access */
 
 #define VERIFY_READ 0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]