]> pd.if.org Git - pdclib/blobdiff - functions/math/sin.c
Re-import from Subversion.
[pdclib] / functions / math / sin.c
index f2daef9150f090636868d0b485e8c54618a39080..98a23181ffa6434265aca896bc4459add61fe30b 100644 (file)
@@ -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 sin( float x ) { /* TODO */ };
-long double sin( long double x ) { /* TODO */ };
-
-// ----------------------------------------------------------------------------
-// Standard C
+/* ----------------------------------------------------------------------------
+ * $Id$
+ * ----------------------------------------------------------------------------
+ * Public Domain C Library - http://pdclib.sourceforge.net
+ * This code is Public Domain. Use, modify, and redistribute at will.
+ * --------------------------------------------------------------------------*/
 
 double sin( double x ) { /* TODO */ };
 float sinf( float x ) { /* TODO */ };