diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:18:24 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:18:24 +0000 |
commit | 723789e49ff4d13e2d25696ef9d3b52f5e961ac2 (patch) | |
tree | 367cb7a8de7dd312451b8c48f6463c6daf66d761 /libc/string/strcpy.c | |
parent | a7bd97894ccac9ba696d32acad6d0c4659584be9 (diff) | |
download | uClibc-alpine-723789e49ff4d13e2d25696ef9d3b52f5e961ac2.tar.bz2 uClibc-alpine-723789e49ff4d13e2d25696ef9d3b52f5e961ac2.tar.xz |
Copy from trunk.
Diffstat (limited to 'libc/string/strcpy.c')
-rw-r--r-- | libc/string/strcpy.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/string/strcpy.c b/libc/string/strcpy.c new file mode 100644 index 000000000..8dcdddde4 --- /dev/null +++ b/libc/string/strcpy.c @@ -0,0 +1,14 @@ +/* + * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org> + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strcpy +#define Wstrcpy __strcpy + +#include "wstring.c" + +strong_alias(__strcpy, strcpy) + +#undef L_strcpy |