summaryrefslogtreecommitdiffstats
path: root/libiberty/stpcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/stpcpy.c')
-rw-r--r--libiberty/stpcpy.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/libiberty/stpcpy.c b/libiberty/stpcpy.c
index a589642fd8..b7148d8d5b 100644
--- a/libiberty/stpcpy.c
+++ b/libiberty/stpcpy.c
@@ -30,19 +30,13 @@ Copies the string @var{src} into @var{dst}. Returns a pointer to
*/
#include <ansidecl.h>
-#ifdef ANSI_PROTOTYPES
#include <stddef.h>
-#else
-#define size_t unsigned long
-#endif
-extern size_t strlen PARAMS ((const char *));
-extern PTR memcpy PARAMS ((PTR, const PTR, size_t));
+extern size_t strlen (const char *);
+extern PTR memcpy (PTR, const PTR, size_t);
char *
-stpcpy (dst, src)
- char *dst;
- const char *src;
+stpcpy (char *dst, const char *src)
{
const size_t len = strlen (src);
return (char *) memcpy (dst, src, len + 1) + len;
OpenPOWER on IntegriCloud