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 *openfd(int fd){
io *f; io *f;
fprint(2, "in openfd\n");
f=new(struct io); f=new(struct io);
f->fd=fd; f->fd=fd;
f->bufp=f->ebuf=f->buf; f->bufp=f->ebuf=f->buf;
f->strp=0; f->strp=0;
fprint(2, "in openfd\n");
return f; return f;
} }
io *openstr(void){ io *openstr(void){