]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/nbsd-tdep.c
Automatic date update in version.in
[thirdparty/binutils-gdb.git] / gdb / nbsd-tdep.c
index 20910f2aedecc20e3b3e427aa2ffb0f5dbf6f7ed..49bb2b706bdac522941cb862962f0e0bd48b6734 100644 (file)
@@ -1,6 +1,6 @@
 /* Common target-dependent code for NetBSD systems.
 
-   Copyright (C) 2002, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+   Copyright (C) 2002-2020 Free Software Foundation, Inc.
 
    Contributed by Wasabi Systems, Inc.
   
@@ -20,8 +20,8 @@
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include "defs.h"
-#include "gdb_string.h"
 #include "solib-svr4.h"
+#include "nbsd-tdep.h"
 
 /* FIXME: kettenis/20060115: We should really eliminate the next two
    functions completely.  */
@@ -39,11 +39,11 @@ nbsd_lp64_solib_svr4_fetch_link_map_offsets (void)
 }
 
 int
-nbsd_pc_in_sigtramp (CORE_ADDR pc, char *func_name)
+nbsd_pc_in_sigtramp (CORE_ADDR pc, const char *func_name)
 {
   /* Check for libc-provided signal trampoline.  All such trampolines
      have function names which begin with "__sigtramp".  */
 
   return (func_name != NULL
-         && strncmp (func_name, "__sigtramp", 10) == 0);
+         && startswith (func_name, "__sigtramp"));
 }