Remove debugging print.
This commit is contained in:
parent
0b91799791
commit
315e309098
1 changed files with 0 additions and 2 deletions
|
|
@ -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){
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue