fdWriter represents a wrapped stdout Writer that preserves the original file descriptor
| 590 | |
| 591 | // fdWriter represents a wrapped stdout Writer that preserves the original file descriptor |
| 592 | type fdWriter struct { |
| 593 | io.Writer |
| 594 | fd uintptr |
| 595 | } |
| 596 | |
| 597 | func (w *fdWriter) Fd() uintptr { |
| 598 | return w.fd |
nothing calls this directly
no outgoing calls
no test coverage detected