mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
Delete useless 'extern' qualifiers for functions
'extern' qualifier is useless for function declarations. Delete them. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
ba76a84d2d
commit
64b85a8f23
22 changed files with 126 additions and 131 deletions
|
@ -89,9 +89,9 @@ typedef struct tagFPA11 {
|
|||
|
||||
extern FPA11* qemufpa;
|
||||
|
||||
extern void resetFPA11(void);
|
||||
extern void SetRoundingMode(const unsigned int);
|
||||
extern void SetRoundingPrecision(const unsigned int);
|
||||
void resetFPA11(void);
|
||||
void SetRoundingMode(const unsigned int);
|
||||
void SetRoundingPrecision(const unsigned int);
|
||||
|
||||
static inline unsigned int readRegister(unsigned int reg)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue