Subversion Repositories DevTools

Rev

Rev 227 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 227 Rev 5659
Line 475... Line 475...
475
	}
475
	}
476
	if (*line != '"') {
476
	if (*line != '"') {
477
		error("preprocessor error");
477
		error("preprocessor error");
478
	}
478
	}
479
	line++;
479
	line++;
480
	p = file = alloc(strlen(line) + 1);
480
	p = alloc(strlen(line) + 1);
-
 
481
	file = p;
481
	while (*line && *line != '"') {
482
	while (*line && *line != '"') {
482
		*p++ = *line++;
483
		*p++ = *line++;
483
	}
484
	}
484
	if (*line == 0) {
485
	if (*line == 0) {
485
		error("preprocessor error");
486
		error("preprocessor error");