set default newlib dir's structure
git-svn-id: svn://kolibrios.org@4874 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
13
contrib/sdk/sources/newlib/libc/string/strdup.c
Normal file
13
contrib/sdk/sources/newlib/libc/string/strdup.c
Normal file
@@ -0,0 +1,13 @@
|
||||
#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 */
|
Reference in New Issue
Block a user