Files
syncthing/cmd/syncthing/memsize_unimpl.go
T

10 lines
129 B
Go

// +build freebsd
package main
import "errors"
func memorySize() (uint64, error) {
return 0, errors.New("not implemented")
}