* linux-arm-low.c: Include <signal.h>.
[deliverable/binutils-gdb.git] / ld / testplug.c
index 9e1561c40fd0b73342d634774a032afd9c61d45a..f04df10fa051061262cb77fcc4d38e1acdfd2b11 100644 (file)
@@ -23,7 +23,6 @@
 #include "plugin-api.h"
 /* For ARRAY_SIZE macro only - we don't link the library itself.  */
 #include "libiberty.h"
-#include "filenames.h"
 
 extern enum ld_plugin_status onload (struct ld_plugin_tv *tv);
 static enum ld_plugin_status onclaim_file (const struct ld_plugin_input_file *file,
@@ -520,7 +519,7 @@ onclaim_file (const struct ld_plugin_input_file *file, int *claimed)
   claim_file_t *claimfile = claimfiles_list;
   while (claimfile)
     {
-      if (!filename_cmp (file->name, claimfile->file.name))
+      if (!strcmp (file->name, claimfile->file.name))
        break;
       claimfile = claimfile->next;
     }
This page took 0.022875 seconds and 4 git commands to generate.