diff options
-rw-r--r-- | src/cmd/rc/io.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cmd/rc/io.c b/src/cmd/rc/io.c index 61256102..c360b4a0 100644 --- a/src/cmd/rc/io.c +++ b/src/cmd/rc/io.c @@ -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){ |