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