Kalle Olavi Niemitalo wrote: > Chris Lingard <[EMAIL PROTECTED]> writes: > > > -# ifdef __STDC__ > > +# if defined(__STDC__) || defined(HURD) > > typedef void (*handler)(int); > > # else > > typedef void (*handler)(); > > # endif > > Why is this; don't we have __STDC__ on the Hurd? >
Yes, it is a macro in cpp. It is me, doing things like I am at work. On the Hurd it is safe; only gcc as a C compiler. Good. I am too used to people setting -traditional, or using another C compiler Chris

