mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
remove unnecessary extern "C" blocks
A handful of header files in QEMU are wrapped with extern "C" blocks. These are not necessary: there are C++ source files anymore in QEMU, and even where there were some, they did not include most of these files anyway. Remove them for consistency. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
808d15b383
commit
d76aa73fad
6 changed files with 0 additions and 47 deletions
|
@ -11,10 +11,6 @@
|
|||
|
||||
#include "qemu/bswap.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef void *PTR;
|
||||
typedef uint64_t bfd_vma;
|
||||
typedef int64_t bfd_signed_vma;
|
||||
|
@ -506,8 +502,4 @@ static inline bfd_vma bfd_getb16(const bfd_byte *addr)
|
|||
|
||||
typedef bool bfd_boolean;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* DISAS_DIS_ASM_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue