diff options
Diffstat (limited to 'libiberty/stpcpy.c')
-rw-r--r-- | libiberty/stpcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/stpcpy.c b/libiberty/stpcpy.c index 880e4fc..2d3eb4c 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) |