X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=oslib%2Fstrsep.c;h=2d42ca0f31e7eb1535d78e092507320b7160cf71;hb=39281024d26b5dbd4c70ce7620aeadc8933ac8c7;hp=b71e9f7bf25ab34e17084b737af5ecccd2a0f85a;hpb=984f30c9756b50c1507b287c71243e2c06efff16;p=fio.git diff --git a/oslib/strsep.c b/oslib/strsep.c index b71e9f7b..2d42ca0f 100644 --- a/oslib/strsep.c +++ b/oslib/strsep.c @@ -1,4 +1,7 @@ -#include +#ifndef CONFIG_STRSEP + +#include +#include "strsep.h" char *strsep(char **stringp, const char *delim) { @@ -27,3 +30,5 @@ char *strsep(char **stringp, const char *delim) } while (sc != 0); } while (1); } + +#endif