mirror of
https://github.com/criyle/go-judge.git
synced 2025-11-04 14:50:02 +08:00
13 lines
167 B
Go
13 lines
167 B
Go
//go:build !linux
|
|
|
|
package model
|
|
|
|
import "os"
|
|
|
|
func fileToByte(f *os.File, mmap bool) ([]byte, error) {
|
|
return fileToByteGeneric(f)
|
|
}
|
|
|
|
func releaseByte(b []byte) {
|
|
}
|