Retro68/gcc/newlib/libc/string/strndup.c

16 lines
213 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
#ifndef _REENT_ONLY
#include <_ansi.h>
#include <reent.h>
#include <stdlib.h>
#include <string.h>
char *
2018-12-28 15:30:48 +00:00
strndup (const char *str,
2017-04-11 21:13:36 +00:00
size_t n)
{
return _strndup_r (_REENT, str, n);
}
#endif /* !_REENT_ONLY */