aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2010-01-05 10:48:32 -0600
committerRob Landley <rob@landley.net>2010-01-05 10:48:32 -0600
commit1e01cd1f48bff3fdd12f45bf1c3adfab821ee287 (patch)
tree0643c843391c506b5fc31502a0610772e11b3670 /lib/lib.c
parent69bc2c3ac1544ff51bd5d7979e02e2840241ec32 (diff)
downloadtoybox-1e01cd1f48bff3fdd12f45bf1c3adfab821ee287.tar.gz
Correct return types of xstrdup() and xstrndup()
Diffstat (limited to 'lib/lib.c')
-rw-r--r--lib/lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lib.c b/lib/lib.c
index e4b9d8eb..48689d3d 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -106,7 +106,7 @@ void *xrealloc(void *ptr, size_t size)
}
// Die unless we can allocate a copy of this many bytes of string.
-void *xstrndup(char *s, size_t n)
+char *xstrndup(char *s, size_t n)
{
char *ret = xmalloc(++n);
strncpy(ret, s, n);
@@ -116,7 +116,7 @@ void *xstrndup(char *s, size_t n)
}
// Die unless we can allocate a copy of this string.
-void *xstrdup(char *s)
+char *xstrdup(char *s)
{
return xstrndup(s, strlen(s));
}