mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 20:26:39 +00:00
14 lines
162 B
Go
14 lines
162 B
Go
|
//go:build tinygo
|
||
|
|
||
|
package sysfs
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/tetratelabs/wazero/experimental/sys"
|
||
|
)
|
||
|
|
||
|
func datasync(f *os.File) sys.Errno {
|
||
|
return sys.ENOSYS
|
||
|
}
|