repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
overhaul internally-public declarations using wrapper headers
[musl.git]
/
src
/
string
/
strdup.c
blob
dd5f80c1c39d20ea3d2f2e1393ebb081de3c2632
1
#include <stdlib.h>
2
#include <string.h>
3
#include
"libc.h"
4
5
char
*
__strdup
(
const char
*
s
)
6
{
7
size_t
l
=
strlen
(
s
);
8
char
*
d
=
malloc
(
l
+
1
);
9
if
(!
d
)
return
NULL
;
10
return
memcpy
(
d
,
s
,
l
+
1
);
11
}
12
13
weak_alias
(
__strdup
,
strdup
);