summaryrefslogtreecommitdiff
path: root/lib/strndup.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-11-12 16:11:17 +0000
committerJim Meyering <jim@meyering.net>1997-11-12 16:11:17 +0000
commit992fc3869f2298e6f7614c2203aaa140a0af085a (patch)
tree07f2176fc9293eb6c0ea7a26e283aada406ad6ca /lib/strndup.c
parente96a4f0ed18cb6c3141fb8cb40547d63dd63fb26 (diff)
downloadcoreutils-992fc3869f2298e6f7614c2203aaa140a0af085a.tar.xz
return memcpy result directly
Diffstat (limited to 'lib/strndup.c')
-rw-r--r--lib/strndup.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/strndup.c b/lib/strndup.c
index a23060e38..f4b1f7ac1 100644
--- a/lib/strndup.c
+++ b/lib/strndup.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
NOTE: The canonical source of this file is maintained with the GNU C Library.
Bugs can be reported to bug-glibc@prep.ai.mit.edu.
@@ -42,8 +42,6 @@ strndup (s, n)
if (new == NULL)
return NULL;
- memcpy (new, s, n);
new[n] = '\0';
-
- return new;
+ return memcpy (new, s, n);
}