1
0
Fork 0
forked from len0rd/rockbox

gigabeats: remove inline from extern functions

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28022 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-09-07 14:30:30 +00:00
parent c168d2317f
commit aca255e8e8
2 changed files with 2 additions and 2 deletions

View file

@ -235,7 +235,7 @@ rolo_restart(const unsigned char *source, unsigned char *dest, int length)
#endif /* BOOTLOADER */
inline void dumpregs(void)
void dumpregs(void)
{
asm volatile ("mov %0,r0\n\t"
"mov %1,r1\n\t"

View file

@ -73,6 +73,6 @@ struct ARM_REGS {
int cpsr;
} regs;
inline void dumpregs(void);
void dumpregs(void);
#endif /* SYSTEM_TARGET_H */