Remove debugging print.

This commit is contained in:
rsc 2004-03-04 02:37:30 +00:00
parent 0b91799791
commit 315e309098

View file

@ -127,12 +127,10 @@ void flush(io *f)
}
io *openfd(int fd){
io *f;
fprint(2, "in openfd\n");
f=new(struct io);
f->fd=fd;
f->bufp=f->ebuf=f->buf;
f->strp=0;
fprint(2, "in openfd\n");
return f;
}
io *openstr(void){