From: Kari E. Hurtta (hurtta@cs.Helsinki.FI)
Date: 08/26/92


From: hurtta@cs.Helsinki.FI (Kari E. Hurtta)
Subject: Re: gcc compiler bug involving <linux/ctype.h>?
Date: 26 Aug 1992 11:34:44 GMT

In article <HURTTA.92Aug26131805@plootu.Helsinki.FI> hurtta@cs.Helsinki.FI (Kari E. Hurtta) wrote:
> In article <1992Aug26.020845.15618@watson.ibm.com> derek@watson.ibm.com (Derek Lieber) wrote:
>> The problem seems to be due to the toupper macro defined in <linux/ctype.h>.
>> The macro looks fine to me, but changing it from...
>> #define toupper(c) (_ctmp=c,islower(_ctmp)?_ctmp-('a'-'A'):_ctmp)
>
> So error is in macro.

Or you use that macro (or header file) in place where isn't meant to use.
Well, I don't know anything about sources of Linux or gcc.

- K E H