sing-box/experimental/libbox/service_other.go

10 lines
121 B
Go
Raw Normal View History

2023-04-07 13:10:16 +00:00
//go:build !windows
package libbox
import "syscall"
func dup(fd int) (nfd int, err error) {
return syscall.Dup(fd)
}