zbd: don't unlock zone mutex after verify replay
[fio.git] / oslib / strlcat.h
index baeace40d42d54e4180a7526ed5d406bdc89581e..85e4bdab23a90ab12ad0d0fc743e36e8224a4c3c 100644 (file)
@@ -1,6 +1,12 @@
+#ifndef CONFIG_STRLCAT
+
 #ifndef FIO_STRLCAT_H
 #define FIO_STRLCAT_H
 
-size_t strlcat(char *dst, const char *src, size_t size);
+#include <stddef.h>
+
+size_t strlcat(char *dst, const char *src, size_t dsize);
+
+#endif
 
 #endif