summaryrefslogtreecommitdiff
path: root/libiberty/stpcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/stpcpy.c')
-rw-r--r--libiberty/stpcpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/stpcpy.c b/libiberty/stpcpy.c
index 880e4fca7c7..2d3eb4c71cd 100644
--- a/libiberty/stpcpy.c
+++ b/libiberty/stpcpy.c
@@ -33,7 +33,7 @@ Copies the string @var{src} into @var{dst}. Returns a pointer to
#include <stddef.h>
extern size_t strlen (const char *);
-extern PTR memcpy (PTR, const PTR, size_t);
+extern void *memcpy (void *, const void *, size_t);
char *
stpcpy (char *dst, const char *src)