diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-01-23 16:21:20 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-01-23 16:21:20 +0000 |
commit | 64b85a8f2359ca3a995499afaf3c87d8e036e030 (patch) | |
tree | c8f8396df5fde32181b5e93f241b64c604cf5df5 /target-s390x | |
parent | ba76a84d2d420ccab7383bb60c61b96491f50b33 (diff) |
Delete useless 'extern' qualifiers for functions
'extern' qualifier is useless for function declarations. Delete
them.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-s390x')
-rw-r--r-- | target-s390x/cpu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-s390x/cpu.h b/target-s390x/cpu.h index 8d73fad360..e47c372fbd 100644 --- a/target-s390x/cpu.h +++ b/target-s390x/cpu.h @@ -105,9 +105,9 @@ int cpu_s390x_handle_mmu_fault (CPUS390XState *env, target_ulong address, int rw #define TARGET_VIRT_ADDR_SPACE_BITS 32 #ifndef CONFIG_USER_ONLY -extern int s390_virtio_hypercall(CPUState *env); -extern void kvm_s390_virtio_irq(CPUState *env, int config_change, uint64_t token); -extern CPUState *s390_cpu_addr2state(uint16_t cpu_addr); +int s390_virtio_hypercall(CPUState *env); +void kvm_s390_virtio_irq(CPUState *env, int config_change, uint64_t token); +CPUState *s390_cpu_addr2state(uint16_t cpu_addr); #endif |