diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-02-07 12:35:39 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-02-07 12:35:39 +0000 |
commit | e88de09993cf37702c1f20f5299471aa123295e6 (patch) | |
tree | 53d41b27a407093442c360b60753e8e2d6813571 /linux-user | |
parent | 832ed0fa340cedb948a63abd472c7ba4bfd911c8 (diff) | |
download | qemu-e88de09993cf37702c1f20f5299471aa123295e6.zip qemu-e88de09993cf37702c1f20f5299471aa123295e6.tar.gz qemu-e88de09993cf37702c1f20f5299471aa123295e6.tar.bz2 |
ARM FPA get_user/put_user fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1266 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/qemu.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h index 2331c41..c176a58 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -1,5 +1,5 @@ -#ifndef GEMU_H -#define GEMU_H +#ifndef QEMU_H +#define QEMU_H #include "thunk.h" @@ -52,8 +52,6 @@ struct vm86_saved_state { #ifdef TARGET_ARM /* FPU emulator */ #include "nwfpe/fpa11.h" -#undef put_user -#undef get_user #endif /* NOTE: we force a big alignment so that the stack stored after is @@ -238,4 +236,4 @@ static inline unsigned long clear_user(void *dst, unsigned long size) return size; } -#endif +#endif /* QEMU_H */ |