avoid pt_regs clash

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2003-02-18 23:00:51 +00:00
parent 31e31b8a24
commit 01ffc75bc9
3 changed files with 6 additions and 8 deletions

View file

@ -3,7 +3,7 @@
#include "thunk.h"
struct pt_regs {
struct target_pt_regs {
long ebx;
long ecx;
long edx;
@ -44,7 +44,7 @@ struct image_info {
};
int elf_exec(const char * filename, char ** argv, char ** envp,
struct pt_regs * regs, struct image_info *infop);
struct target_pt_regs * regs, struct image_info *infop);
void target_set_brk(char *new_brk);
void syscall_init(void);