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:
authorBen Elliston <bje@gnu.org>2003-09-05 04:13:15 +0400
committerBen Elliston <bje@gnu.org>2003-09-05 04:13:15 +0400
commit10a32423f87001643918b15d3b6118a29d8615d4 (patch)
tree5117c312afc9e8b8c7dc63f9852e139248a9bb59 /newlib/ChangeLog
parent3833944e68d3ed74e0f96d4350a612b31e4267d3 (diff)
* libc/stdlib/mstats.c[_ELIX_LEVEL]: Fix guards. #ifndef FOO ||
FOO >= 2 is invalid; use #if !defined (FOO) || FOO >= 2 instead.
Diffstat (limited to 'newlib/ChangeLog')
-rw-r--r--newlib/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 485dd23db..addfa0354 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2003-09-04 Ben Elliston <bje@wasabisystems.com>
+
+ * libc/stdlib/mstats.c[_ELIX_LEVEL]: Fix guards. #ifndef FOO ||
+ FOO >= 2 is invalid; use #if !defined (FOO) || FOO >= 2 instead.
+
2003-09-02 Thomas Pfaff <tpfaff@gmx.net>
* libc/stdlib/atexit.c: Rename _REENT to _GLOBAL_REENT throughout.