libc/newlib/libc/string/strdup.c
Yaakov Selkowitz 9087163804 ansification: remove _DEFUN
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:26 -06: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 */