diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-02-18 23:00:51 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-02-18 23:00:51 +0000 |
commit | 01ffc75bc95e2a7ea7c00dc3d7637b20f02efdef (patch) | |
tree | 85e33bd076635dcfcf41ca2fd4494de333694c76 /linux-user/qemu.h | |
parent | 31e31b8a248ffa216223dad49f75efbdfca5df23 (diff) |
avoid pt_regs clash
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/qemu.h')
-rw-r--r-- | linux-user/qemu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h index fa40d4d845..0b9de6b3fe 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -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); |