Ruby
2.0.0p247(2013-06-27revision41674)
Main Page
Modules
Data Structures
Files
File List
Globals
symbian
missing-aeabi.c
Go to the documentation of this file.
1
#if __GNUC__ > 3
2
3
/* GCCE 4.3.2 generates these functions which are are missing from exports (they are simple aliases) */
4
extern
int
__aeabi_uidivmod(
unsigned
int
a
,
unsigned
int
b
);
5
extern
int
__aeabi_idivmod(
int
a
,
int
b
);
6
int
__aeabi_idiv(
int
a
,
int
b
)
7
{
8
return
__aeabi_idivmod(a, b);
9
}
10
11
int
__aeabi_uidiv(
unsigned
int
a
,
unsigned
int
b
)
12
{
13
return
__aeabi_uidivmod(a, b);
14
}
15
16
#endif
17
18
a
Real * a
Definition:
bigdecimal.c:1182
b
Real * b
Definition:
bigdecimal.c:1182
Generated on Fri Dec 27 2013 21:53:10 for Ruby by
1.8.5