]> pd.if.org Git - pdclib/blobdiff - functions/math/fmax.c
Introducing personalities. Removing C++ function decs / defs.
[pdclib] / functions / math / fmax.c
index a775ae12b188f70c7c3127b00ea33edb3d069bc9..6bc8e6ca4d0c8cffe18f4256f0e1c83174871165 100644 (file)
@@ -5,15 +5,13 @@
 // This code is Public Domain. Use, modify, and redistribute at will.
 // ----------------------------------------------------------------------------
 
-// ----------------------------------------------------------------------------
-// C++
+double fmax( double x, double y ) { /* TODO */ };
 
-float fmax( float x, float y ) { /* TODO */ };
-long double fmax( long double x, long double y ) { /* TODO */ };
+/* Therx code
+{
+    return ( x > y ) ? x : y;
+}
+*/
 
-// ----------------------------------------------------------------------------
-// Standard C
-
-double fmax( double x, double y ) { /* TODO */ };
 float fmaxf( float x, float y ) { /* TODO */ };
 long double fmaxl( long double x, long double y ) { /* TODO */ };