Retro68/gcc/newlib/libc/string/strdup.c
2012-03-27 01:51:53 +02:00

14 lines
194 B
C

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