newlib-cygwin/newlib/libc/string/strdup.c

14 lines
178 B
C
Raw Normal View History

2000-02-18 03:39:52 +08:00
#ifndef _REENT_ONLY
#include <reent.h>
#include <stdlib.h>
#include <string.h>
char *
strdup (const char *str)
2000-02-18 03:39:52 +08:00
{
return _strdup_r (_REENT, str);
}
#endif /* !_REENT_ONLY */