Commit b6218e69 authored by Ken Thompson's avatar Ken Thompson

'\Ucafebabe'

SVN=121562
parent fc184ef8
......@@ -387,7 +387,7 @@ void lexinit(void);
char* lexname(int);
long getr(void);
int getnsc(void);
long escchar(long, int*);
ulong escchar(int, int*);
int getc(void);
void ungetc(int);
void mkpackage(char*);
......
......@@ -171,7 +171,7 @@ cannedimports(void)
long
yylex(void)
{
long c, c1;
ulong c, c1;
char *cp;
Rune rune;
int escflag;
......@@ -696,10 +696,10 @@ getnsc(void)
}
long
escchar(long e, int *escflg)
ulong
escchar(int e, int *escflg)
{
long c, l;
ulong c, l;
int i;
*escflg = 0;
......@@ -753,7 +753,7 @@ loop:
default:
if(c != e)
warn("unknown escape sequence: %c", c);
warn("unknown escape sequence: %c", c);
}
return c;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment