This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: linux libio status
- To: egcs team <egcs at cygnus dot com>
- Subject: Re: linux libio status
- From: Olivier Galibert <Olivier dot Galibert at mines dot u-nancy dot fr>
- Date: Wed, 15 Oct 1997 09:52:11 +0200
- References: <199710150623.XAA06491@atrus.synopsys.com>
On Tue, Oct 14, 1997 at 11:23:49PM -0700, Joe Buck wrote:
> We need to silence these warnings. For the NULL, I suggest a global
> s/NULL/0/ in the C++ iostreams headers. There is no reason to write
> NULL, it is just a source of problems like this (*especially* since
> we have changed C++ to be strict about void*).
Don't use '0' but '0L'. This way you will be OK with NULL in stdargs
when int=32b and pointer=64b.
OG.