diff options
| author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-03 19:55:35 +0000 |
|---|---|---|
| committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-03 19:55:35 +0000 |
| commit | ea0444b5760df265884c735d27e017be4cf9e76b (patch) | |
| tree | 484cb5308e3b9c2005e6c303cc7382018f035877 /hw | |
| parent | bedf26e6b47b47e8fb72ad4e965a31896466d184 (diff) | |
| download | focaccia-qemu-ea0444b5760df265884c735d27e017be4cf9e76b.tar.gz focaccia-qemu-ea0444b5760df265884c735d27e017be4cf9e76b.zip | |
SH4: Fix warning when compiling sh7750_regnames.c
This patch fixes a warning when compiling sh7750_regnames.c which is caused by sh7750_regnames.h (which contains the prototype of regname()) not being included. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6504 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
| -rw-r--r-- | hw/sh7750_regnames.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/sh7750_regnames.c b/hw/sh7750_regnames.c index 51283c9db6..3ee5c7f15b 100644 --- a/hw/sh7750_regnames.c +++ b/hw/sh7750_regnames.c @@ -1,6 +1,7 @@ #include "hw.h" #include "sh.h" #include "sh7750_regs.h" +#include "sh7750_regnames.h" #define REGNAME(r) {r, #r}, |