Retro68/gcc/newlib/libc/string/strdup.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

14 lines
178 B
C

#ifndef _REENT_ONLY
#include <reent.h>
#include <stdlib.h>
#include <string.h>
char *
strdup (const char *str)
{
return _strdup_r (_REENT, str);
}
#endif /* !_REENT_ONLY */