diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-03-02 15:01:45 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-03-02 15:01:45 -0500 |
commit | 07458cb09bfe1336c40f1866f105650c44810f43 (patch) | |
tree | 377d60651822a823d1704ca431315c30f29d4431 /src/stdlib | |
parent | 73211ec3e7af1bc7b8123b561535dd9509fc0db1 (diff) |
add <ctype.h> include for consuming leading spaces
Diffstat (limited to 'src/stdlib')
-rw-r--r-- | src/stdlib/strtol.c | 1 | ||||
-rw-r--r-- | src/stdlib/strtoll.c | 1 | ||||
-rw-r--r-- | src/stdlib/strtoul.c | 1 | ||||
-rw-r--r-- | src/stdlib/strtoull.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/stdlib/strtol.c b/src/stdlib/strtol.c index bec5f9d2..28d8f823 100644 --- a/src/stdlib/strtol.c +++ b/src/stdlib/strtol.c @@ -1,4 +1,5 @@ #include <stdlib.h> +#include "ctype.h" #include "limits.h" #include "errno.h" diff --git a/src/stdlib/strtoll.c b/src/stdlib/strtoll.c index b0ea0f41..87a338ec 100644 --- a/src/stdlib/strtoll.c +++ b/src/stdlib/strtoll.c @@ -1,4 +1,5 @@ #include <stdlib.h> +#include "ctype.h" #include "limits.h" #include "errno.h" diff --git a/src/stdlib/strtoul.c b/src/stdlib/strtoul.c index 414b5897..8ef4eb34 100644 --- a/src/stdlib/strtoul.c +++ b/src/stdlib/strtoul.c @@ -1,4 +1,5 @@ #include <stdlib.h> +#include "ctype.h" #include "errno.h" #include "limits.h" diff --git a/src/stdlib/strtoull.c b/src/stdlib/strtoull.c index d655c136..6f9bfe46 100644 --- a/src/stdlib/strtoull.c +++ b/src/stdlib/strtoull.c @@ -1,4 +1,5 @@ #include <stdlib.h> +#include "ctype.h" #include "limits.h" #include "errno.h" |