Refactor #includes and headers
[fio.git] / oslib / strlcat.h
1 #ifndef FIO_STRLCAT_H
2 #define FIO_STRLCAT_H
3
4 #include <stddef.h>
5
6 size_t strlcat(char *dst, const char *src, size_t size);
7
8 #endif