projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
611f4e0
)
return memcpy result directly
author
Jim Meyering
<jim@meyering.net>
Wed, 12 Nov 1997 16:11:17 +0000
(16:11 +0000)
committer
Jim Meyering
<jim@meyering.net>
Wed, 12 Nov 1997 16:11:17 +0000
(16:11 +0000)
lib/strndup.c
patch
|
blob
|
history
diff --git
a/lib/strndup.c
b/lib/strndup.c
index a23060e3819ba9d0604c421e443e595d446f347c..f4b1f7ac13ffea3565881448298a19f08951b575 100644
(file)
--- 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);
}