smart sun

This commit is contained in:
rsc 2005-01-14 18:33:54 +00:00
parent d7925b13e3
commit 6b32f96d74

View file

@ -16,14 +16,12 @@ Bgetch(Biobuf *b)
{
int c;
for(;;) {
c = Bgetc(b);
if(c == '#') {
while((c = Bgetc(b)) != Beof && c != '\n')
;
}
return c;
}
c = Bgetc(b);
if(c == '#') {
while((c = Bgetc(b)) != Beof && c != '\n')
;
}
return c;
}
/*