]> pd.if.org Git - pdclib/blobdiff - functions/math/signbit.c
Added template implementation files.
[pdclib] / functions / math / signbit.c
diff --git a/functions/math/signbit.c b/functions/math/signbit.c
new file mode 100644 (file)
index 0000000..d349fe2
--- /dev/null
@@ -0,0 +1,13 @@
+// ----------------------------------------------------------------------------
+// $Id$
+// ----------------------------------------------------------------------------
+// Public Domain C Library - http://pdclib.sourceforge.net
+// This code is Public Domain. Use, modify, and redistribute at will.
+// ----------------------------------------------------------------------------
+
+// ----------------------------------------------------------------------------
+// C++
+
+bool signbit( float x ) { /* TODO */ };
+bool signbit( double x ) { /* TODO */ };
+bool signbit( long double x ) { /* TODO */ };