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 /linux-user | |
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 'linux-user')
-rw-r--r-- | linux-user/arm/nwfpe/fpa11.h | 6 | ||||
-rw-r--r-- | linux-user/arm/nwfpe/fpopcode.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/linux-user/arm/nwfpe/fpa11.h b/linux-user/arm/nwfpe/fpa11.h index 07419e266b..f17647bdb9 100644 --- a/linux-user/arm/nwfpe/fpa11.h +++ b/linux-user/arm/nwfpe/fpa11.h @@ -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) { diff --git a/linux-user/arm/nwfpe/fpopcode.h b/linux-user/arm/nwfpe/fpopcode.h index 16fa34afbf..e7d100941c 100644 --- a/linux-user/arm/nwfpe/fpopcode.h +++ b/linux-user/arm/nwfpe/fpopcode.h @@ -384,7 +384,7 @@ static inline float32 getSingleConstant(const unsigned int nIndex) return float32Constant[nIndex]; } -extern unsigned int getRegisterCount(const unsigned int opcode); -extern unsigned int getDestinationSize(const unsigned int opcode); +unsigned int getRegisterCount(const unsigned int opcode); +unsigned int getDestinationSize(const unsigned int opcode); #endif |