mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +00:00
13 lines
188 B
Go
13 lines
188 B
Go
|
package sysfs
|
||
|
|
||
|
import (
|
||
|
"syscall"
|
||
|
|
||
|
"github.com/tetratelabs/wazero/experimental/sys"
|
||
|
)
|
||
|
|
||
|
func unlink(name string) sys.Errno {
|
||
|
err := syscall.Remove(name)
|
||
|
return sys.UnwrapOSError(err)
|
||
|
}
|