Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2001-03-11 01:23:16 +0300
committerDJ Delorie <dj@redhat.com>2001-03-11 01:23:16 +0300
commit6a6a6fa2aeb3ce49529d32db6ae6ab2e87893960 (patch)
tree5c6d058edf6a5f05f75d800b5ecd7de09ee3bc68 /include
parente2f2a27ee83c8d05ca665acb5a5910e2594c4cc8 (diff)
merge from gcc
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog5
-rw-r--r--include/libiberty.h4
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 21ce68446..70009a424 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-10 Neil Booth <neil@daikokuya.demon.co.uk>
+
+ John David Anglin <dave@hiauly1.hia.nrc.ca>
+ * include/libiberty.h: Add lbasename.
+
2001-03-06 Zack Weinberg <zackw@stanford.edu>
* libiberty.h: Prototype C_alloca; define alloca to either
diff --git a/include/libiberty.h b/include/libiberty.h
index e4fc2af20..c61c1f012 100644
--- a/include/libiberty.h
+++ b/include/libiberty.h
@@ -56,6 +56,10 @@ extern char *basename ();
# endif
#endif
+/* A well-defined basename () that is always compiled in. */
+
+extern char *lbasename PARAMS ((const char *));
+
/* Concatenate an arbitrary number of strings, up to (char *) NULL.
Allocates memory using xmalloc. */