Files
stfs/pkg/hardware/eject.go

10 lines
131 B
Go

package hardware
import (
"github.com/pojntfx/stfs/internal/mtio"
)
func Eject(fd uintptr) error {
return mtio.EjectTape(fd)
}