mirror of https://github.com/flysand7/ciabatta.git
LESS FILES
This commit is contained in:
parent
d873ab18ef
commit
aa4c3c2d32
|
@ -1,16 +0,0 @@
|
||||||
|
|
||||||
#include <math.h>
|
|
||||||
|
|
||||||
double fabs(double x) {
|
|
||||||
if(x >= 0) {
|
|
||||||
return x;
|
|
||||||
}
|
|
||||||
return -x;
|
|
||||||
}
|
|
||||||
|
|
||||||
float fabsf(float x) {
|
|
||||||
if(x >= 0) {
|
|
||||||
return x;
|
|
||||||
}
|
|
||||||
return -x;
|
|
||||||
}
|
|
|
@ -1,4 +1,20 @@
|
||||||
|
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
|
double fabs(double x) {
|
||||||
|
if(x >= 0) {
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
return -x;
|
||||||
|
}
|
||||||
|
|
||||||
|
float fabsf(float x) {
|
||||||
|
if(x >= 0) {
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
return -x;
|
||||||
|
}
|
||||||
|
|
||||||
double fmod(double x, double y) {
|
double fmod(double x, double y) {
|
||||||
int n = 0;
|
int n = 0;
|
||||||
while(y < x*n) {
|
while(y < x*n) {
|
|
@ -1,12 +0,0 @@
|
||||||
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue