Merge branch 'axmap' of https://github.com/bvanassche/fio
[fio.git] / oslib / strlcat.h
... / ...
CommitLineData
1#ifndef CONFIG_STRLCAT
2
3#ifndef FIO_STRLCAT_H
4#define FIO_STRLCAT_H
5
6#include <stddef.h>
7
8size_t strlcat(char *dst, const char *src, size_t size);
9
10#endif
11
12#endif