* readelf.c (decode_location_expression): Loop through multiple
[deliverable/binutils-gdb.git] / ld / ldemul.c
index 85a2894581fda085365cb4dfed24b811308a94b8..08a4e47e1cf730f203e969e88896285838c17a18 100644 (file)
@@ -297,3 +297,14 @@ ldemul_list_emulation_options (f)
   if (! options_found)
     fprintf (f, _("  no emulation specific options.\n"));
 }
+
+int
+ldemul_find_potential_libraries (name, entry)
+     char * name;
+     lang_input_statement_type * entry;
+{
+  if (ld_emulation->find_potential_libraries)
+    return ld_emulation->find_potential_libraries (name, entry);
+
+  return 0;
+}
This page took 0.024738 seconds and 4 git commands to generate.