00c0d4
commit bc02f1fa2fb302eb8a486794c6b7e4811229b81e
00c0d4
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
00c0d4
Date:   Fri Mar 25 08:53:42 2022 -0300
00c0d4
00c0d4
    elf: Remove unused functions from tst-audit25(a,b)
00c0d4
00c0d4
diff --git a/elf/tst-audit25a.c b/elf/tst-audit25a.c
00c0d4
index 49173e862516e876..c2cff8541b3741c3 100644
00c0d4
--- a/elf/tst-audit25a.c
00c0d4
+++ b/elf/tst-audit25a.c
00c0d4
@@ -49,14 +49,6 @@ handle_restart (void)
00c0d4
   return 0;
00c0d4
 }
00c0d4
 
00c0d4
-static inline bool
00c0d4
-startswith (const char *str, const char *pre)
00c0d4
-{
00c0d4
-  size_t lenpre = strlen (pre);
00c0d4
-  size_t lenstr = strlen (str);
00c0d4
-  return lenstr < lenpre ? false : memcmp (pre, str, lenpre) == 0;
00c0d4
-}
00c0d4
-
00c0d4
 static int
00c0d4
 do_test (int argc, char *argv[])
00c0d4
 {
00c0d4
diff --git a/elf/tst-audit25b.c b/elf/tst-audit25b.c
00c0d4
index a56638d501f9bff5..46391770fdfc1796 100644
00c0d4
--- a/elf/tst-audit25b.c
00c0d4
+++ b/elf/tst-audit25b.c
00c0d4
@@ -48,14 +48,6 @@ handle_restart (void)
00c0d4
   return 0;
00c0d4
 }
00c0d4
 
00c0d4
-static inline bool
00c0d4
-startswith (const char *str, const char *pre)
00c0d4
-{
00c0d4
-  size_t lenpre = strlen (pre);
00c0d4
-  size_t lenstr = strlen (str);
00c0d4
-  return lenstr >= lenpre && memcmp (pre, str, lenpre) == 0;
00c0d4
-}
00c0d4
-
00c0d4
 static int
00c0d4
 do_test (int argc, char *argv[])
00c0d4
 {