aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-08-10 23:46:17 +0000
committerAndrew Cagney <cagney@redhat.com>2001-08-10 23:46:17 +0000
commit3ea71002e4722647f3fb74bd2834e4126b7bf943 (patch)
tree7bd31572030498595e78e35b8d5b45c9e617fe67
parent1297a2f020b41485135f3e58100d689799785ee5 (diff)
downloadfsf-binutils-gdb-3ea71002e4722647f3fb74bd2834e4126b7bf943.zip
fsf-binutils-gdb-3ea71002e4722647f3fb74bd2834e4126b7bf943.tar.gz
fsf-binutils-gdb-3ea71002e4722647f3fb74bd2834e4126b7bf943.tar.bz2
(lbasename): Change function declaration to return a const char pointer.
-rw-r--r--include/ChangeLog5
-rw-r--r--include/libiberty.h2
-rw-r--r--libiberty/ChangeLog5
-rw-r--r--libiberty/lbasename.c6
4 files changed, 14 insertions, 4 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. */
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index c3fdb22..5c70d68 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-13 Andrew Cagney <ac131313@redhat.com>
+
+ * lbasename.c (lbasename): Change function definition to return a
+ const char pointer.
+
2001-08-07 Jason Merrill <jason_merrill@redhat.com>
* cp-demangle.c (demangle_special_name): "GR" -> "reference temporary
diff --git a/libiberty/lbasename.c b/libiberty/lbasename.c
index 7f87049..b373162 100644
--- a/libiberty/lbasename.c
+++ b/libiberty/lbasename.c
@@ -23,7 +23,7 @@ NAME
lbasename -- return pointer to last component of a pathname
SYNOPSIS
- char *lbasename (const char *name)
+ const char *lbasename (const char *name)
DESCRIPTION
Given a pointer to a string containing a typical pathname
@@ -69,7 +69,7 @@ DESCRIPTION
# endif
#endif
-char *
+const char *
lbasename (name)
const char *name;
{
@@ -85,5 +85,5 @@ lbasename (name)
if (IS_DIR_SEPARATOR (*name))
base = name + 1;
- return (char *) base;
+ return base;
}