Files
xmtop/logging/logging_other.go
2020-04-29 17:32:00 +02:00

12 lines
189 B
Go

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