summaryrefslogtreecommitdiff
path: root/src/stdlib
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib')
-rw-r--r--src/stdlib/strtod.c1
-rw-r--r--src/stdlib/strtol.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/stdlib/strtod.c b/src/stdlib/strtod.c
index 461dcf85..a898b1d4 100644
--- a/src/stdlib/strtod.c
+++ b/src/stdlib/strtod.c
@@ -2,7 +2,6 @@
#include "shgetc.h"
#include "floatscan.h"
#include "stdio_impl.h"
-#include "libc.h"
static long double strtox(const char *s, char **p, int prec)
{
diff --git a/src/stdlib/strtol.c b/src/stdlib/strtol.c
index 730bf2d7..d82ecf7f 100644
--- a/src/stdlib/strtol.c
+++ b/src/stdlib/strtol.c
@@ -4,7 +4,6 @@
#include <inttypes.h>
#include <limits.h>
#include <ctype.h>
-#include "libc.h"
static unsigned long long strtox(const char *s, char **p, int base, unsigned long long lim)
{