]> pd.if.org Git - pdclib/blobdiff - functions/math/hypot.c
Added template implementation files.
[pdclib] / functions / math / hypot.c
diff --git a/functions/math/hypot.c b/functions/math/hypot.c
new file mode 100644 (file)
index 0000000..449242d
--- /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 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 */ };
+float hypotf( float x, float y ) { /* TODO */ };
+long double hypotl( long double x, long double y ) { /* TODO */ };