smart sun

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

View file

@ -16,7 +16,6 @@ Bgetch(Biobuf *b)
{ {
int c; int c;
for(;;) {
c = Bgetc(b); c = Bgetc(b);
if(c == '#') { if(c == '#') {
while((c = Bgetc(b)) != Beof && c != '\n') while((c = Bgetc(b)) != Beof && c != '\n')
@ -24,7 +23,6 @@ Bgetch(Biobuf *b)
} }
return c; return c;
} }
}
/* /*
* fetch a nonnegative decimal integer. * fetch a nonnegative decimal integer.