headers: Remove unnecessary keyword extern from function declaration

Usage of this keyword in front of function declaration that is exported via a
header file is unnecessary, since internally, this has been the default for most
compilers for quite some time.

Signed-off-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
Erik Skultety
2016-05-10 13:37:32 +02:00
parent e5aecc2f80
commit 898c0bbea7
13 changed files with 112 additions and 112 deletions

View File

@@ -22,6 +22,6 @@
#ifndef __VIRT_HOST_VALIDATE_QEMU_H__
# define __VIRT_HOST_VALIDATE_QEMU_H__
extern int virHostValidateQEMU(void);
int virHostValidateQEMU(void);
#endif /* __VIRT_HOST_VALIDATE_QEMU_H__ */