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