diff options
author | David Malcolm <dmalcolm@redhat.com> | 2014-10-15 20:20:05 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2014-10-15 20:20:05 +0000 |
commit | e39423c06daa6d37098d1000174587b10ce695a3 (patch) | |
tree | 0b95c0fc810d46f2993b7222ec997e2cc685e750 /include/ChangeLog | |
parent | 26882aba54fc8a2112450a011d699eb7b1110ee9 (diff) | |
download | gcc-e39423c06daa6d37098d1000174587b10ce695a3.zip gcc-e39423c06daa6d37098d1000174587b10ce695a3.tar.gz gcc-e39423c06daa6d37098d1000174587b10ce695a3.tar.bz2 |
libiberty: Expose choose_tmpdir, and fix constness of return type
include/ChangeLog:
* libiberty.h (choose_tmpdir): New prototype.
libiberty/ChangeLog:
* choose-temp.c (choose_tmpdir): Remove now-redundant local
copy of prototype.
* functions.texi: Regenerate.
* make-temp-file.c (choose_tmpdir): Convert return type from
char * to const char * - given that this returns a pointer to
a memoized allocation, the caller must not touch it.
From-SVN: r216285
Diffstat (limited to 'include/ChangeLog')
-rw-r--r-- | include/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index fd6274f..5198c24 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2014-10-15 David Malcolm <dmalcolm@redhat.com> + + * libiberty.h (choose_tmpdir): New prototype. + 2013-10-02 Mark Wielaard <mjw@redhat.com> PR debug/63239 |