mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
9087163804
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
14 lines
178 B
C
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 */
|