summaryrefslogtreecommitdiffstats
path: root/newlib/ChangeLog
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2007-06-27 12:44:41 +0000
committerEric Blake <eblake@redhat.com>2007-06-27 12:44:41 +0000
commit3473e6bd7b268deb4314659009512d846a75b368 (patch)
tree6ad0d0da98788ea8cab097e3ff0f908233da5161 /newlib/ChangeLog
parent26e8e4befff225f93ed71f0f3182647cea975ecc (diff)
downloadcygnal-3473e6bd7b268deb4314659009512d846a75b368.tar.gz
cygnal-3473e6bd7b268deb4314659009512d846a75b368.tar.bz2
cygnal-3473e6bd7b268deb4314659009512d846a75b368.zip
Support __func__ in assert, as required by C99.
* libc/stdlib/assert.c (__assert_func): New function. (__assert): Use __assert_func. * libc/include/assert.h (assert) [!NDEBUG]: Use __assert_func when possible.
Diffstat (limited to 'newlib/ChangeLog')
-rw-r--r--newlib/ChangeLog14
1 files changed, 11 insertions, 3 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 39bd297ea..7822a6edf 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,11 @@
+2007-06-27 Eric Blake <ebb9@byu.net>
+
+ Support __func__ in assert, as required by C99.
+ * libc/stdlib/assert.c (__assert_func): New function.
+ (__assert): Use __assert_func.
+ * libc/include/assert.h (assert) [!NDEBUG]: Use __assert_func when
+ possible.
+
2007-06-20 Patrick Mansfield <patmans@us.ibm.com>
* libc/machine/spu/perror.c: Pass errno as the second argument to
@@ -11,7 +19,7 @@
2007-06-20 Patrick Mansfield <patmans@us.ibm.com>
* libc/include/sys/unistd.h[__SPU__]: Make fchdir prototype visible.
- * libc/include/sys/stat.h[__SPU__]: Make mknod and lstat prototypes
+ * libc/include/sys/stat.h[__SPU__]: Make mknod and lstat prototypes
visible.
2007-06-15 Patrick Mansfield <patmans@us.ibm.com>
@@ -23,7 +31,7 @@
2007-06-13 Patrick Mansfield <patmans@us.ibm.com>
* libc/machine/spu/creat.c: New file copied from libc/posix/creat.c,
- it just calls open with appropriate arguments.
+ it just calls open with appropriate arguments.
* libc/machine/spu/Makefile.am: Add creat.c.
* libc/machine/spu/Makefile.in: Regenerate.
@@ -77,7 +85,7 @@
2007-06-05 Christian Groessler <chris@groessler.org>
- * libc/argz/argz_insert.c (argz_insert): Move delta variable
+ * libc/argz/argz_insert.c (argz_insert): Move delta variable
declaration to top of function in keeping with C89 standard.
2007-06-04 Eric Blake <ebb9@byu.net>