]> pd.if.org Git - pdclib/blobdiff - functions/math/fdim.c
Re-import from Subversion.
[pdclib] / functions / math / fdim.c
index 9a005796f828ee09a8b57d2abd3d818e7499f0c1..5956e5f32a229043aaac23fd2f3b83f90cd0df8f 100644 (file)
@@ -1,18 +1,9 @@
-// ----------------------------------------------------------------------------
-// $Id$
-// ----------------------------------------------------------------------------
-// Public Domain C Library - http://pdclib.sourceforge.net
-// This code is Public Domain. Use, modify, and redistribute at will.
-// ----------------------------------------------------------------------------
-
-// ----------------------------------------------------------------------------
-// C++
-
-float fdim( float x, float y ) { /* TODO */ };
-long double fdim( long double x, long double y ) { /* TODO */ };
-
-// ----------------------------------------------------------------------------
-// Standard C
+/* ----------------------------------------------------------------------------
+ * $Id$
+ * ----------------------------------------------------------------------------
+ * Public Domain C Library - http://pdclib.sourceforge.net
+ * This code is Public Domain. Use, modify, and redistribute at will.
+ * --------------------------------------------------------------------------*/
 
 double fdim( double x, double y ) { /* TODO */ };