X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fmath%2Ffmax.c;h=42856c5863b281e19fcab449bcbd10835c1a1902;hp=a775ae12b188f70c7c3127b00ea33edb3d069bc9;hb=0a5395faab237ba9008352b0f4bee9659bbd3d5f;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec diff --git a/functions/math/fmax.c b/functions/math/fmax.c index a775ae1..42856c5 100644 --- a/functions/math/fmax.c +++ b/functions/math/fmax.c @@ -15,5 +15,12 @@ long double fmax( long double x, long double y ) { /* TODO */ }; // Standard C double fmax( double x, double y ) { /* TODO */ }; + +/* Therx code +{ + return ( x > y ) ? x : y; +} +*/ + float fmaxf( float x, float y ) { /* TODO */ }; long double fmaxl( long double x, long double y ) { /* TODO */ };