forked from KolibriOS/kolibrios
0a3f4b2193
git-svn-id: svn://kolibrios.org@1693 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
207 B
C
14 lines
207 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 */
|