syncthing/cmd/syncthing/memsize_unimpl.go

10 lines
129 B
Go
Raw Normal View History

2014-06-16 09:52:14 +02:00
// +build freebsd
package main
import "errors"
func memorySize() (uint64, error) {
return 0, errors.New("not implemented")
}