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