fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / string / strdup.c
blobdbb06926427892f019c935ba73e84e233bc150fe
1 #ifndef _REENT_ONLY
3 #include <reent.h>
4 #include <stdlib.h>
5 #include <string.h>
7 char *
8 _DEFUN (strdup, (str), _CONST char *str)
10 return _strdup_r (_REENT, str);
13 #endif /* !_REENT_ONLY */