]> pd.if.org Git - pdclib/blobdiff - functions/math/fmax.c
Added template implementation files.
[pdclib] / functions / math / fmax.c
diff --git a/functions/math/fmax.c b/functions/math/fmax.c
new file mode 100644 (file)
index 0000000..a775ae1
--- /dev/null
@@ -0,0 +1,19 @@
+// ----------------------------------------------------------------------------
+// $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
+
+double fmax( double x, double y ) { /* TODO */ };
+float fmaxf( float x, float y ) { /* TODO */ };
+long double fmaxl( long double x, long double y ) { /* TODO */ };