]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - benchtests/bench-stpcpy_chk.c
po: Incorporate translations (sr)
[thirdparty/glibc.git] / benchtests / bench-stpcpy_chk.c
index aaacd336bad6e5f5f4f420773480749ed05ee9ac..3a1e98884f1203db3d4ca2b2ce2fd86ec70462db 100644 (file)
@@ -1,5 +1,5 @@
 /* Measure stpcpy checking functions.
-   Copyright (C) 2013-2023 Free Software Foundation, Inc.
+   Copyright (C) 2013-2024 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 #include "bench-string.h"
 
 extern void __attribute__ ((noreturn)) __chk_fail (void);
-char *simple_stpcpy_chk (char *, const char *, size_t);
 extern char *normal_stpcpy (char *, const char *, size_t)
   __asm ("stpcpy");
 extern char *__stpcpy_chk (char *, const char *, size_t);
 
-IMPL (simple_stpcpy_chk, 0)
 IMPL (normal_stpcpy, 1)
 IMPL (__stpcpy_chk, 2)
 
-char *
-simple_stpcpy_chk (char *dst, const char *src, size_t len)
-{
-  if (! len)
-    __chk_fail ();
-  while ((*dst++ = *src++) != '\0')
-    if (--len == 0)
-      __chk_fail ();
-  return dst - 1;
-}
-
 #include "bench-strcpy_chk.c"