From: Vern Paxson Date: Mon, 5 Jul 1993 21:52:29 +0000 (+0000) Subject: Spit out definition of YY_CHAR early X-Git-Tag: flex-2-5-5b~428 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32ae837b83545b262703e64daee192571be3a696;p=flex Spit out definition of YY_CHAR early --- diff --git a/main.c b/main.c index c32af32..7ff70c8 100644 --- a/main.c +++ b/main.c @@ -751,16 +751,16 @@ char **argv; void readin() { - skelout(); - - if ( ddebug ) - puts( "#define FLEX_DEBUG" ); - if ( csize == 256 ) puts( "typedef unsigned char YY_CHAR;" ); else puts( "typedef char YY_CHAR;" ); + skelout(); + + if ( ddebug ) + puts( "#define FLEX_DEBUG" ); + line_directive_out( stdout ); if ( yyparse() )