mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-08 06:47:23 -04:00
Merge pull request #1403 from shinovon/8
Symbian: fix gcce builds not running on s60v3
This commit is contained in:
commit
579aa4f6d8
@ -709,5 +709,21 @@ static cc_result GetMachineID(cc_uint32* key) {
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __ARMCC_4_0__
|
||||||
|
extern "C" {
|
||||||
|
extern int __aeabi_uidivmod(unsigned int a, unsigned int b);
|
||||||
|
extern int __aeabi_idivmod(int a, int b);
|
||||||
|
int __aeabi_idiv(int a, int b)
|
||||||
|
{
|
||||||
|
return __aeabi_idivmod(a, b);
|
||||||
|
}
|
||||||
|
|
||||||
|
int __aeabi_uidiv(unsigned int a, unsigned int b)
|
||||||
|
{
|
||||||
|
return __aeabi_uidivmod(a, b);
|
||||||
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user