X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=oslib%2Fstrlcat.c;h=6c4c67863256891f15b40b47b1969db1ab8ee37e;hp=3b33d0eb56a72e64e87ecc79b8a3334381bd39fe;hb=cb3b68068d4688c4ac9f6d1bf169010f0ce8fab3;hpb=8604ba2c938aa97abbeff3a4615c30f04507092b diff --git a/oslib/strlcat.c b/oslib/strlcat.c index 3b33d0eb..6c4c6786 100644 --- a/oslib/strlcat.c +++ b/oslib/strlcat.c @@ -1,3 +1,5 @@ +#ifndef CONFIG_STRLCAT + #include #include "strlcat.h" @@ -22,3 +24,5 @@ size_t strlcat(char *dst, const char *src, size_t size) return dstlen + srclen; } + +#endif