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