summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/linux/intl/lcl_stpcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/linux/intl/lcl_stpcpy.c')
-rw-r--r--newlib/libc/sys/linux/intl/lcl_stpcpy.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/newlib/libc/sys/linux/intl/lcl_stpcpy.c b/newlib/libc/sys/linux/intl/lcl_stpcpy.c
deleted file mode 100644
index 0af6c67c8..000000000
--- a/newlib/libc/sys/linux/intl/lcl_stpcpy.c
+++ /dev/null
@@ -1,10 +0,0 @@
-char *
-__stpcpy (dest, src)
- char *dest;
- const char *src;
-{
- while ((*dest++ = *src++) != '\0')
- /* Do nothing. */ ;
- return dest - 1;
-}
-