mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
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
This commit is contained in:
parent
19f329ad7b
commit
3f47aa8c37
7 changed files with 12 additions and 12 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue