X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=oslib%2Fstrcasestr.c;h=5fa05fa1404ac1daa2f9d7e9be70962e9587eb35;hb=85e99d6e24dc92eb2b69fd568bafdd5da6e1d872;hp=92cf24c6778d7d4934598be426cb60b75f6dda96;hpb=984f30c9756b50c1507b287c71243e2c06efff16;p=fio.git diff --git a/oslib/strcasestr.c b/oslib/strcasestr.c index 92cf24c6..5fa05fa1 100644 --- a/oslib/strcasestr.c +++ b/oslib/strcasestr.c @@ -1,5 +1,8 @@ +#ifndef CONFIG_STRCASESTR + #include #include +#include "strcasestr.h" char *strcasestr(const char *s1, const char *s2) { @@ -23,3 +26,5 @@ char *strcasestr(const char *s1, const char *s2) return *p ? NULL : (char *) s1; } + +#endif