diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:23:36 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:23:36 +0000 |
commit | c65580e828e84ac2d3fd26ec12191098a9e19c6c (patch) | |
tree | 551c565392f70a2693507fd9f2c8efc5accd6093 /libc/string/stpcpy.c | |
parent | e8c6d764544e9f280f4355f82e07064fdb4ab133 (diff) | |
download | uClibc-alpine-c65580e828e84ac2d3fd26ec12191098a9e19c6c.tar.bz2 uClibc-alpine-c65580e828e84ac2d3fd26ec12191098a9e19c6c.tar.xz |
Copy from trunk.
Diffstat (limited to 'libc/string/stpcpy.c')
-rw-r--r-- | libc/string/stpcpy.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/string/stpcpy.c b/libc/string/stpcpy.c new file mode 100644 index 000000000..c7baf5b9d --- /dev/null +++ b/libc/string/stpcpy.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_stpcpy +#define Wstpcpy __stpcpy + +#include "wstring.c" + +strong_alias(__stpcpy, stpcpy) + +#undef L_stpcpy |