Add strndup() function, if we don't have it
[fio.git] / oslib / strndup.h
CommitLineData
b29c71c4
JA
1#ifdef CONFIG_HAVE_STRNDUP
2
3#include <string.h>
4
5#else
6
7char *strndup(const char *s, size_t n);
8
9#endif