X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fmath%2Ffmin.c;h=3ba9b295dddc6853a051c86724bb8ae7d25bcde2;hb=c8f799d852e3698468a78954d82588e841cc0b70;hp=62ff17a2c65beef38742f69c7a11f5b2783d6b1c;hpb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;p=pdclib.old diff --git a/functions/math/fmin.c b/functions/math/fmin.c index 62ff17a..3ba9b29 100644 --- a/functions/math/fmin.c +++ b/functions/math/fmin.c @@ -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 fmin( float x, float y ) { /* TODO */ }; -long double fmin( 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 fmin( double x, double y ) { /* TODO */ };