summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-09 06:59:01 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-09 06:59:01 +0000
commit3f47aa8c37cf1ab86df03dcf3a91c6f7249bdc12 (patch)
treed9d3e5f4462517b179c20412b5ccccdab6fc660a
parent19f329ad7b4131471183801ccfa74295698fa62e (diff)
downloadqemu-3f47aa8c37cf1ab86df03dcf3a91c6f7249bdc12.tar.gz
Fix some functions declared () rather than (void) (Ian Jackson)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4029 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--block-vvfat.c4
-rw-r--r--darwin-user/qemu.h2
-rw-r--r--darwin-user/syscall.c8
-rw-r--r--hw/alpha_palcode.c4
-rw-r--r--target-i386/helper.c2
-rw-r--r--target-i386/svm.h2
-rw-r--r--vl.c2
7 files changed, 12 insertions, 12 deletions
diff --git a/block-vvfat.c b/block-vvfat.c
index 873956d3b0..a93fde9702 100644
--- a/block-vvfat.c
+++ b/block-vvfat.c
@@ -53,7 +53,7 @@
#define stderr STDERR
FILE* stderr = NULL;
-static void checkpoint();
+static void checkpoint(void);
#ifdef __MINGW32__
void nonono(const char* file, int line, const char* msg) {
@@ -2813,7 +2813,7 @@ BlockDriver bdrv_vvfat = {
};
#ifdef DEBUG
-static void checkpoint() {
+static void checkpoint(void) {
assert(((mapping_t*)array_get(&(vvv->mapping), 0))->end == 2);
check1(vvv);
check2(vvv);
diff --git a/darwin-user/qemu.h b/darwin-user/qemu.h
index 41b57f8511..7240f82089 100644
--- a/darwin-user/qemu.h
+++ b/darwin-user/qemu.h
@@ -113,7 +113,7 @@ extern int loglevel;
extern FILE *logfile;
/* commpage.c */
-void commpage_init();
+void commpage_init(void);
void do_commpage(void *cpu_env, int num, uint32_t arg1, uint32_t arg2, uint32_t arg3,
uint32_t arg4, uint32_t arg5, uint32_t arg6, uint32_t arg7, uint32_t arg8);
diff --git a/darwin-user/syscall.c b/darwin-user/syscall.c
index f17e591012..ae39f9a93b 100644
--- a/darwin-user/syscall.c
+++ b/darwin-user/syscall.c
@@ -417,7 +417,7 @@ long do_mach_syscall(void *cpu_env, int num, uint32_t arg1, uint32_t arg2, uint3
uint32_t arg4, uint32_t arg5, uint32_t arg6, uint32_t arg7,
uint32_t arg8)
{
- extern uint32_t mach_reply_port();
+ extern uint32_t mach_reply_port(void);
long ret = 0;
@@ -551,7 +551,7 @@ long do_thread_syscall(void *cpu_env, int num, uint32_t arg1, uint32_t arg2, uin
uint32_t arg8)
{
extern uint32_t cthread_set_self(uint32_t);
- extern uint32_t processor_facilities_used();
+ extern uint32_t processor_facilities_used(void);
long ret = 0;
arg1 = tswap32(arg1);
@@ -830,7 +830,7 @@ static inline void byteswap_timeval(struct timeval *t)
}
long do_unix_syscall_indirect(void *cpu_env, int num);
-long do_sync();
+long do_sync(void);
long do_exit(uint32_t arg1);
long do_getlogin(char *out, uint32_t size);
long do_open(char * arg1, uint32_t arg2, uint32_t arg3);
@@ -996,7 +996,7 @@ long do_exit(uint32_t arg1)
return -1;
}
-long do_sync()
+long do_sync(void)
{
sync();
return 0;
diff --git a/hw/alpha_palcode.c b/hw/alpha_palcode.c
index 3bd2c54342..50ce92cb83 100644
--- a/hw/alpha_palcode.c
+++ b/hw/alpha_palcode.c
@@ -56,7 +56,7 @@ pal_handler_t pal_handlers[] = {
#if 0
/* One must explicitely check that the TB is valid and the FOE bit is reset */
-static void update_itb ()
+static void update_itb (void)
{
/* This writes into a temp register, not the actual one */
mtpr(TB_TAG);
@@ -65,7 +65,7 @@ static void update_itb ()
mtpr(ITB_PTE);
}
-static void update_dtb ();
+static void update_dtb (void);
{
mtpr(TB_CTL);
/* This write into a temp register, not the actual one */
diff --git a/target-i386/helper.c b/target-i386/helper.c
index 7306cbd3f2..c0fb78f6b7 100644
--- a/target-i386/helper.c
+++ b/target-i386/helper.c
@@ -1670,7 +1670,7 @@ void helper_cmpxchg8b(void)
CC_SRC = eflags;
}
-void helper_single_step()
+void helper_single_step(void)
{
env->dr[6] |= 0x4000;
raise_exception(EXCP01_SSTP);
diff --git a/target-i386/svm.h b/target-i386/svm.h
index 982d05487b..f99f47e899 100644
--- a/target-i386/svm.h
+++ b/target-i386/svm.h
@@ -323,7 +323,7 @@ struct __attribute__ ((__packed__)) vmcb {
/* function references */
-void helper_stgi();
+void helper_stgi(void);
void vmexit(uint64_t exit_code, uint64_t exit_info_1);
int svm_check_intercept_param(uint32_t type, uint64_t param);
static inline int svm_check_intercept(unsigned int type) {
diff --git a/vl.c b/vl.c
index d371af755b..e2bcb58236 100644
--- a/vl.c
+++ b/vl.c
@@ -899,7 +899,7 @@ static struct qemu_alarm_timer alarm_timers[] = {
{NULL, }
};
-static void show_available_alarms()
+static void show_available_alarms(void)
{
int i;