4 lines
100 B
C
4 lines
100 B
C
// Soft-double division. Lowers to __divdf3.
|
|
double ddiv(double a, double b) {
|
|
return a / b;
|
|
}
|