diff options
author | Rob Landley <rob@landley.net> | 2018-11-29 18:50:32 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-11-29 18:50:32 -0600 |
commit | 2d0251960835631e7db202c131757ca599ed19e3 (patch) | |
tree | 10a1fb17699b9e44a2ced9decd4f1d3190ca73d4 | |
parent | db055c5b3e5f30aaee2187fbef9b8aa05aea3b95 (diff) | |
download | toybox-2d0251960835631e7db202c131757ca599ed19e3.tar.gz |
Remove an extra #include <string.h>
-rw-r--r-- | lib/portability.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/portability.h b/lib/portability.h index a74d66d5..2dba2311 100644 --- a/lib/portability.h +++ b/lib/portability.h @@ -88,8 +88,6 @@ char *strptime(const char *buf, const char *format, struct tm *tm); char *dirname(char *path); char *__xpg_basename(char *path); static inline char *basename(char *path) { return __xpg_basename(path); } - -#include <string.h> char *strcasestr(const char *haystack, const char *needle); #endif // defined(glibc) |