summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/latest/com32/lib/stpcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/latest/com32/lib/stpcpy.c')
-rw-r--r--contrib/syslinux/latest/com32/lib/stpcpy.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/contrib/syslinux/latest/com32/lib/stpcpy.c b/contrib/syslinux/latest/com32/lib/stpcpy.c
deleted file mode 100644
index 23e20af..0000000
--- a/contrib/syslinux/latest/com32/lib/stpcpy.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * stpcpy.c
- *
- * stpcpy()
- */
-
-#include <string.h>
-
-char *stpcpy(char *dst, const char *src)
-{
- char *q = dst;
- const char *p = src;
- char ch;
-
- for (;;) {
- *q = ch = *p++;
- if (!ch)
- break;
- q++;
- }
-
- return q;
-}