xmtop/logging/logging_arm64.go
2020-02-15 14:27:31 -06:00

11 lines
128 B
Go

package logging
import (
"os"
"syscall"
)
func stderrToLogfile(logfile *os.File) {
syscall.Dup3(int(logfile.Fd()), 2, 0)
}