sing-box/experimental/libbox/service_other.go
2023-04-07 21:10:16 +08:00

10 lines
121 B
Go

//go:build !windows
package libbox
import "syscall"
func dup(fd int) (nfd int, err error) {
return syscall.Dup(fd)
}