xmtop/logging/logging_other.go
2020-02-15 14:57:18 -06:00

11 lines
144 B
Go

// +build !arm64
package logging
import "syscall"
import "os"
func stderrToLogfile(logfile *os.File) {
syscall.Dup2(int(logfile.Fd()), 2)
}