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:
authorDavid O'Brien <obrien@FreeBSD.org>2001-07-20 06:22:17 +0400
committerDavid O'Brien <obrien@FreeBSD.org>2001-07-20 06:22:17 +0400
commite2696c3f513084d39f45a009eb529ede024b8fa7 (patch)
tree647220248a71fec686a92320f1b7ae72de2f52c1
parent05a1135601bc97e99e9aaba9ce119d4984df8465 (diff)
2001-07-19 David O'Brien <obrien@FreeBSD.org>binutils-2_11-branch
* lbasename.c: New file. * libiberty.h: Add lbasename. Approved by: Philip Blundell <philb@gnu.org> <E15K1Xn-00032C-00@kings-cross.london.uk.eu.org> * emultempl/elf32.em: Do not assuming that contents of the buffer returned from basename function will remain unchanged accross other function calls. Approved by: Philip Blundell <philb@gnu.org> <E15MO4s-00017V-00@kings-cross.london.uk.eu.org>
-rw-r--r--include/ChangeLog4
-rw-r--r--include/libiberty.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 10bb1b2a8..ad96520e2 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2001-07-19 David O'Brien <obrien@FreeBSD.org>
+
+ * libiberty.h: Add lbasename.
+
2001-06-07 Alan Modra <amodra@bigpond.net.au>
* Many files: Update copyright notices.
diff --git a/include/libiberty.h b/include/libiberty.h
index 1bc2b7d40..d31ac777d 100644
--- a/include/libiberty.h
+++ b/include/libiberty.h
@@ -81,6 +81,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. */