mirror of https://github.com/flysand7/ciabatta.git
13 lines
146 B
C
13 lines
146 B
C
|
|
||
|
double fmax(double x, double y) {
|
||
|
if(x>y) return x;
|
||
|
return y;
|
||
|
}
|
||
|
|
||
|
float fmaxf(float x, float y) {
|
||
|
if(x>y) return x;
|
||
|
return y;
|
||
|
}
|
||
|
|
||
|
|