syncthing-arm/cmd/syncthing/memsize_unimpl.go
2014-06-12 20:47:46 +02:00

10 lines
137 B
Go

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