Files
sing-box-extended-mirror/experimental/libbox/service_other.go
T

10 lines
121 B
Go
Raw Normal View History

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