Mercurial > ecos
changeset 2168:3a79ecd0c13f
* include/assert.h: Replace #if defined(CYGINT_ISO_EXIT) with #if
CYGINT_ISO_EXIT. CYGINT_ISO_EXIT configuration variable is always
defined to either 0 or 1, so check of the former form is always
evaluated to true.
| author | jlarmour |
|---|---|
| date | Tue, 28 Mar 2006 13:45:12 +0000 |
| parents | 27ecc11e99bd |
| children | 369ee6abe0de |
| files | packages/isoinfra/current/ChangeLog packages/isoinfra/current/include/assert.h |
| diffstat | 2 files changed, 8 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/isoinfra/current/ChangeLog +++ b/packages/isoinfra/current/ChangeLog @@ -1,3 +1,10 @@ +2006-03-17 Sergei Organov <osv@javad.com> + + * include/assert.h: Replace #if defined(CYGINT_ISO_EXIT) with #if + CYGINT_ISO_EXIT. CYGINT_ISO_EXIT configuration variable is always + defined to either 0 or 1, so check of the former form is always + evaluated to true. + 2005-10-20 Alexander Neundorf <neundorf@kde.org> Andrew Lunn <andrew.lunn@ascom.ch>
--- a/packages/isoinfra/current/include/assert.h +++ b/packages/isoinfra/current/include/assert.h @@ -73,7 +73,7 @@ /* First preference is to be standards compliant */ -#if defined(CYGINT_ISO_STDIO_FORMATTED_IO) && defined(CYGINT_ISO_EXIT) +#if defined(CYGINT_ISO_STDIO_FORMATTED_IO) && CYGINT_ISO_EXIT # include <stdio.h> # include <stdlib.h>
