diff options
author | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2010-06-18 16:53:23 +0000 |
---|---|---|
committer | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2010-06-18 16:53:23 +0000 |
commit | e43e1d048f649ab7a99c0187989999a983aada97 (patch) | |
tree | 3a0f62cc125f96aafa699942dd517de19df2ce07 /include | |
parent | ce3b386964645d0c5ede0a965a6f7ca96d26e331 (diff) | |
download | newlib-e43e1d048f649ab7a99c0187989999a983aada97.zip newlib-e43e1d048f649ab7a99c0187989999a983aada97.tar.gz newlib-e43e1d048f649ab7a99c0187989999a983aada97.tar.bz2 |
2010-06-18 Rafael Espindola <espindola@google.com>
* plugin.h (ld_plugin_add_input_file, ld_plugin_add_input_library):
Make argument const.
2010-06-18 Rafael Espindola <espindola@google.com>
* plugin.cc (add_input_file,add_input_library)
(Plugin_manager::add_input_file): Make filename arguments const.
* plugin.h (Plugin_manager::add_input_file): Make filename arguments
const.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/plugin-api.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 97e8da5..1368231 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2010-06-18 Rafael Espindola <espindola@google.com> + + * plugin.h (ld_plugin_add_input_file, ld_plugin_add_input_library): + Make argument const. + 2010-06-08 Laurynas Biveinis <laurynas.biveinis@gmail.com> * splay-tree.h: Update copyright years. diff --git a/include/plugin-api.h b/include/plugin-api.h index 5821785..55cfe25 100644 --- a/include/plugin-api.h +++ b/include/plugin-api.h @@ -220,13 +220,13 @@ enum ld_plugin_status typedef enum ld_plugin_status -(*ld_plugin_add_input_file) (char *pathname); +(*ld_plugin_add_input_file) (const char *pathname); /* The linker's interface for adding a library that should be searched. */ typedef enum ld_plugin_status -(*ld_plugin_add_input_library) (char *libname); +(*ld_plugin_add_input_library) (const char *libname); /* The linker's interface for issuing a warning or error message. */ |