qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] Eliminates a warning about missing function prototy


From: G 3
Subject: [Qemu-devel] [PATCH] Eliminates a warning about missing function prototype for qemu_main.
Date: Wed, 16 Dec 2009 22:45:19 -0500

This patch allows for the file vl.c to compile without any warnings.

Signed-off-by: John Arbuckle <address@hidden>


---
 vl.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/vl.c b/vl.c
index c0d98f5..b466fe0 100644
--- a/vl.c
+++ b/vl.c
@@ -107,16 +107,19 @@ extern int madvise(caddr_t, size_t, int);
 #ifdef CONFIG_SDL
 #if defined(__APPLE__) || defined(main)
 #include <SDL.h>
-int qemu_main(int argc, char **argv, char **envp);
+
 int main(int argc, char **argv)
 {
     return qemu_main(argc, argv, NULL);
 }
+
 #undef main
 #define main qemu_main
 #endif
 #endif /* CONFIG_SDL */

+int qemu_main(int argc, char **argv, char **envp);
+
 #ifdef CONFIG_COCOA
 #undef main
 #define main qemu_main
--
1.6.5.2





reply via email to

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