9
0
Fork 0

mips: Fix compiler warnings

Fixes:

arch/mips/lib/lshrdi3.c:6: warning: no previous prototype for '__lshrdi3'
arch/mips/lib/ashrdi3.c:6: warning: no previous prototype for '__ashrdi3'
arch/mips/lib/ashldi3.c:6: warning: no previous prototype for '__ashldi3'

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2012-04-05 08:49:59 +02:00
parent 3ed06ffde9
commit 4d66ef54b6
1 changed files with 4 additions and 0 deletions

View File

@ -22,4 +22,8 @@ typedef union {
long long ll;
} DWunion;
long long __lshrdi3(long long u, word_type b);
long long __ashldi3(long long u, word_type b);
long long __ashrdi3(long long u, word_type b);
#endif /* __ASM_LIBGCC_H */