]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libiberty/stpcpy.c
libiberty: Disable hwcaps for sha1.o
[thirdparty/gcc.git] / libiberty / stpcpy.c
index ee44a7bdd2b79cbda738e506e9eedce5bf798d25..c996bce1386bad9b117d1cbf2ec16928eb8b942a 100644 (file)
@@ -1,5 +1,5 @@
 /* Implement the stpcpy function.
-   Copyright (C) 2003-2019 Free Software Foundation, Inc.
+   Copyright (C) 2003-2023 Free Software Foundation, Inc.
    Written by Kaveh R. Ghazi <ghazi@caip.rutgers.edu>.
 
 This file is part of the libiberty library.
@@ -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)