diff --git a/Userland/Libraries/LibC/string.h b/Userland/Libraries/LibC/string.h index 44dabc3e367d8d..71ffb914b27c66 100644 --- a/Userland/Libraries/LibC/string.h +++ b/Userland/Libraries/LibC/string.h @@ -11,6 +11,11 @@ __BEGIN_DECLS +// A few C Standard Libraries include this header in , and hence expect +// `strcasecmp` etcetera to be available as part of a include, so let's +// do the same here to maintain compatibility +#include + size_t strlen(const char*); size_t strnlen(const char*, size_t maxlen);