service_other.go 121 B

123456789
  1. //go:build !windows
  2. package libbox
  3. import "syscall"
  4. func dup(fd int) (nfd int, err error) {
  5. return syscall.Dup(fd)
  6. }