X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fmath%2Ffmax.c;h=ecbfce3541becfc6b98e8ceb9464c1531703f98d;hp=42856c5863b281e19fcab449bcbd10835c1a1902;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hpb=0a5395faab237ba9008352b0f4bee9659bbd3d5f diff --git a/functions/math/fmax.c b/functions/math/fmax.c index 42856c5..ecbfce3 100644 --- a/functions/math/fmax.c +++ b/functions/math/fmax.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 fmax( float x, float y ) { /* TODO */ }; -long double fmax( 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 fmax( double x, double y ) { /* TODO */ };