Date: Sun, 13 Jun 1999 11:51:05 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Morten Welinder cc: djgpp-workers AT delorie DOT com Subject: Re: strtol In-Reply-To: <199906122148.XAA03072@tyr.diku.dk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sat, 12 Jun 1999, Morten Welinder wrote: > As far as I can tell, in src/libc/ansi/stdlib/strtol.c, strtol is > sending signed chars to isspace, isupper, and isdigit. The effect of > that is undefined. I'm not sure I follow. strtol sends an int to ctype function, not a signed char. Where exactly is the problem?