summaryrefslogtreecommitdiff
path: root/libc/misc/strtod.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/strtod.c')
-rw-r--r--libc/misc/strtod.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/misc/strtod.c b/libc/misc/strtod.c
index cef9d9f..8acb423 100644
--- a/libc/misc/strtod.c
+++ b/libc/misc/strtod.c
@@ -20,9 +20,6 @@
#include <stdlib.h>
#include <ctype.h>
-#ifndef __AS386_16__
-/* BCC-16 has broken FP code */
-
double
strtod(const char *nptr, char ** endptr)
{
@@ -97,4 +94,3 @@ strtod(const char *nptr, char ** endptr)
}
return (negative ? -number:number);
}
-#endif