diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-19 00:38:33 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-19 00:38:33 +0000 |
commit | df2542c737ea2f7148136b6525cd56f6fc276d69 (patch) | |
tree | 046723d926bcae0d37d696bc073f41f90bf2c999 /darwin-user/qemu.h | |
parent | 8a0ef21949d0606d1510da256ed7d4e9128c5d6d (diff) | |
download | qemu-df2542c737ea2f7148136b6525cd56f6fc276d69.zip |
Avoid duplicated definitions: move common definitions from exec-all.h
and qemu-common.h to osdep.h.
Include this header in translate-op.c.
Make sure it's included first in darwin-user/qemu.h.
To avoid discarded inlining bug, define inline as always_inline and
always_inline as (( attribute (always_inline) )) __inline__.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3698 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'darwin-user/qemu.h')
-rw-r--r-- | darwin-user/qemu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/darwin-user/qemu.h b/darwin-user/qemu.h index 4d7713b500..41b57f8511 100644 --- a/darwin-user/qemu.h +++ b/darwin-user/qemu.h @@ -1,13 +1,13 @@ #ifndef GEMU_H #define GEMU_H -#include "thunk.h" - #include <signal.h> #include <string.h> #include "cpu.h" +#include "thunk.h" + #include "gdbstub.h" typedef siginfo_t target_siginfo_t; |