go-judge/cmd/executorserver/model/util_others.go
2021-09-20 19:09:04 -07:00

14 lines
184 B
Go

//go:build !linux
// +build !linux
package model
import "os"
func fileToByte(f *os.File, mmap bool) ([]byte, error) {
return fileToByteGeneric(f)
}
func releaseByte(b []byte) {
}