]> pd.if.org Git - pdclib/blobdiff - functions/math/asin.c
Added template implementation files.
[pdclib] / functions / math / asin.c
diff --git a/functions/math/asin.c b/functions/math/asin.c
new file mode 100644 (file)
index 0000000..a0de748
--- /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 asin( float x ) { /* TODO */ };
+long double asin( long double x ) { /* TODO */ };
+
+// ----------------------------------------------------------------------------
+// Standard C
+
+double asin( double x ) { /* TODO */ };
+float asinf( float x ) { /* TODO */ };
+long double asinl( long double x ) { /* TODO */ };