mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
12 lines
141 B
Go
12 lines
141 B
Go
// +build linux,arm64
|
|
|
|
package panicwrap
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func dup2(oldfd, newfd int) error {
|
|
return syscall.Dup3(oldfd, newfd, 0)
|
|
}
|