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