client/server: add missing fsync data structures
[fio.git] / oslib / strlcat.h
index 720034fe72d5dbf8411ec6edc7d69e98853f0834..85e4bdab23a90ab12ad0d0fc743e36e8224a4c3c 100644 (file)
@@ -1,8 +1,12 @@
+#ifndef CONFIG_STRLCAT
+
 #ifndef FIO_STRLCAT_H
 #define FIO_STRLCAT_H
 
 #include <stddef.h>
 
-size_t strlcat(char *dst, const char *src, size_t size);
+size_t strlcat(char *dst, const char *src, size_t dsize);
+
+#endif
 
 #endif