repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libc
/
string
/
strdup.c
blob
dbb06926427892f019c935ba73e84e233bc150fe
1
#ifndef _REENT_ONLY
2
3
#include <reent.h>
4
#include <stdlib.h>
5
#include <string.h>
6
7
char
*
8
_DEFUN
(
strdup
, (
str
),
_CONST
char
*
str
)
9
{
10
return
_strdup_r
(
_REENT
,
str
);
11
}
12
13
#endif
/* !_REENT_ONLY */