-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
I get this error:
asscan2.c, line 63: compiler error: strmemb
while trying to compile:
...
if (scannerhadeof)
return (char*)0;
else
return inbuffer;
}
scan_dot_s(bufferbox)
struct tokbufdesc *bufferbox;
{ <-----------------------------------------------line 63
reg char *inbufptr;
reg int inbufcnt;
reg long ryylval; /* local copy of lexical value */
extern long yylval; /* global copy of lexical value */
reg int val; /* the value returned */
int i; /* simple counter */
reg char *rcp;
int ch; /* treated as a character */
int ch1; /* shadow value */
struct symtab *op;
...
The file is from the VAX assembler I'm working on. I've used gcc so far, and I thought I'd try pcc instead.