From: glenlow Date: Tue, 19 Feb 2008 06:57:39 +0000 (+0000) Subject: removed #define uchar since it conflicts with UWIN 4.2 sys/types.h X-Git-Tag: LAST_LIBGRAPH~32^2~4721 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a6012dcb9a1be130daecc70b295d210c0c670852;p=graphviz removed #define uchar since it conflicts with UWIN 4.2 sys/types.h --- diff --git a/lib/graph/lexer.c b/lib/graph/lexer.c index 79a49767a..8659aab41 100644 --- a/lib/graph/lexer.c +++ b/lib/graph/lexer.c @@ -30,9 +30,9 @@ static FILE *Lexer_fp; static char *LexPtr, *TokenBuf; static int LineBufSize; -static uchar In_comment; -static uchar Comment_start; -static uchar Start_html_string; +static unsigned char In_comment; +static unsigned char Comment_start; +static unsigned char Start_html_string; int Line_number; static char *InputFile; static gets_f Lexer_gets;