diff options
author | Juan Quintela | 2017-06-14 10:34:34 +0200 |
---|---|---|
committer | Juan Quintela | 2017-06-14 11:08:55 +0200 |
commit | 68a4a2fda1e698414fc40d264c387dbce3391915 (patch) | |
tree | b2fca2f5b5b6578c420c9199c4b77065bbd0a724 /include/qemu/typedefs.h | |
parent | Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20170613'... (diff) | |
download | qemu-68a4a2fda1e698414fc40d264c387dbce3391915.tar.gz qemu-68a4a2fda1e698414fc40d264c387dbce3391915.tar.xz qemu-68a4a2fda1e698414fc40d264c387dbce3391915.zip |
migration: Fix compilation with older compilers
That typedefs are needed on both files. New compilers (F25 where I
work) don't complain about repeating a typedef. But older ones
complain.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Diffstat (limited to 'include/qemu/typedefs.h')
-rw-r--r-- | include/qemu/typedefs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h index 51958bf7d3..f745d5faf7 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -96,5 +96,7 @@ typedef struct uWireSlave uWireSlave; typedef struct VirtIODevice VirtIODevice; typedef struct Visitor Visitor; typedef struct node_info NodeInfo; +typedef void SaveStateHandler(QEMUFile *f, void *opaque); +typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id); #endif /* QEMU_TYPEDEFS_H */ |