mirror of https://github.com/xemu-project/xemu.git
Fix Sparse warning about missing prototype
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
df3cee1a3a
commit
28e738dcb8
|
@ -545,8 +545,6 @@ static inline void memcpy_fromfs(void * to, const void * from, unsigned long n)
|
||||||
memcpy(to, from, n);
|
memcpy(to, from, n);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern unsigned long x86_stack_size;
|
|
||||||
|
|
||||||
static int load_aout_interp(void * exptr, int interp_fd);
|
static int load_aout_interp(void * exptr, int interp_fd);
|
||||||
|
|
||||||
#ifdef BSWAP_NEEDED
|
#ifdef BSWAP_NEEDED
|
||||||
|
|
|
@ -193,6 +193,9 @@ void mmap_fork_start(void);
|
||||||
void mmap_fork_end(int child);
|
void mmap_fork_end(int child);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* main.c */
|
||||||
|
extern unsigned long x86_stack_size;
|
||||||
|
|
||||||
/* user access */
|
/* user access */
|
||||||
|
|
||||||
#define VERIFY_READ 0
|
#define VERIFY_READ 0
|
||||||
|
|
Loading…
Reference in New Issue