13 lines
172 B
Go
13 lines
172 B
Go
|
|
//go:build !linux
|
||
|
|
|
||
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"os"
|
||
|
|
)
|
||
|
|
|
||
|
|
func redirectStderr(f *os.File) {
|
||
|
|
// No-op on other platforms for now
|
||
|
|
// Windows doesn't have the ALSA noise problem
|
||
|
|
}
|