summaryrefslogtreecommitdiff
path: root/symbian/missing-aeabi.c
diff options
context:
space:
mode:
Diffstat (limited to 'symbian/missing-aeabi.c')
-rw-r--r--symbian/missing-aeabi.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/symbian/missing-aeabi.c b/symbian/missing-aeabi.c
deleted file mode 100644
index f8d7a85039..0000000000
--- a/symbian/missing-aeabi.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#if __GNUC__ > 3
-
-/* GCCE 4.3.2 generates these functions which are are missing from exports (they are simple aliases) */
-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
-
-