diff options
author | Andrew Cagney <cagney@gnu.org> | 2001-08-10 23:46:15 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@gnu.org> | 2001-08-10 23:46:15 +0000 |
commit | 067b07096416e46b4e958ac1bb71fd5f902f725d (patch) | |
tree | 08697f37dcc21d560a92dfca8374fe43d4ee921d | |
parent | 5bb2a182c896699236e059fe95e22bacbbfee037 (diff) | |
download | newlib-067b07096416e46b4e958ac1bb71fd5f902f725d.zip newlib-067b07096416e46b4e958ac1bb71fd5f902f725d.tar.gz newlib-067b07096416e46b4e958ac1bb71fd5f902f725d.tar.bz2 |
(lbasename): Change function declaration to return a const char pointer.
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/libiberty.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 8b89d97..305754f 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2001-06-13 Andrew Cagney <ac131313@redhat.com> + + * libiberty.h (lbasename): Change function declaration to return a + const char pointer. + 2001-08-10 Richard Sandiford <rsandifo@redhat.com> * opcode/mips.h (INSN_GP32): Remove. diff --git a/include/libiberty.h b/include/libiberty.h index effe5f6..8d46e37 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -83,7 +83,7 @@ extern char *basename (); /* A well-defined basename () that is always compiled in. */ -extern char *lbasename PARAMS ((const char *)); +extern const char *lbasename PARAMS ((const char *)); /* Concatenate an arbitrary number of strings, up to (char *) NULL. Allocates memory using xmalloc. */ |