Files
lti-api/vendor/github.com/tinylib/msgp/msgp/advise_other.go
T
GitLab Deploy Bot ad815b3412 .
2025-10-23 11:40:58 +07:00

19 lines
277 B
Go

//go:build (!linux && !tinygo) || appengine
// +build !linux,!tinygo appengine
package msgp
import (
"os"
)
// TODO: darwin, BSD support
func adviseRead(mem []byte) {}
func adviseWrite(mem []byte) {}
func fallocate(f *os.File, sz int64) error {
return f.Truncate(sz)
}