blob: 3f2a0264c789df5b202c2efaf02942af5c3d129c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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 */
|