xmtop/logging/logging_other.go
2021-04-12 08:47:11 +02:00

13 lines
179 B
Go

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