10 lines
131 B
Go
10 lines
131 B
Go
package hardware
|
|
|
|
import (
|
|
"github.com/pojntfx/stfs/internal/mtio"
|
|
)
|
|
|
|
func Eject(fd uintptr) error {
|
|
return mtio.EjectTape(fd)
|
|
}
|