drop unsigned

it causes a cascade of warnings on some architectures.  Also, for what
we're doing here, the signed/unsigned property isn't important.
This commit is contained in:
Omar Polo 2021-07-09 12:56:59 +00:00
parent 528f37cd2d
commit 1bd706dc41
1 changed files with 4 additions and 4 deletions

View File

@ -545,10 +545,10 @@ findeol(void)
int
yylex(void)
{
unsigned char buf[8096];
unsigned char *p, *val;
int quotec, next, c;
int token;
char buf[8096];
char *p, *val;
int quotec, next, c;
int token;
top:
p = buf;