1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-12 06:57:33 +02:00

Import latest version from gnulib.

This commit is contained in:
Jim Meyering
2003-10-13 15:27:11 +00:00
parent ccfc4801cb
commit 0e59370bc6

View File

@@ -29,5 +29,5 @@
char *
xstrdup (const char *string)
{
return strcpy (xmalloc (strlen (string) + 1), string);
return xclone (string, strlen (string) + 1);
}