summaryrefslogtreecommitdiff
path: root/trunk/missing/finite.c
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/missing/finite.c')
-rw-r--r--trunk/missing/finite.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/trunk/missing/finite.c b/trunk/missing/finite.c
deleted file mode 100644
index 8d0b7af262..0000000000
--- a/trunk/missing/finite.c
+++ /dev/null
@@ -1,7 +0,0 @@
-/* public domain rewrite of finite(3) */
-
-int
-finite(double n)
-{
- return !isnan(n) && !isinf(n);
-}