syncthing/cmd/syncthing/memsize_unimpl.go

14 lines
335 B
Go
Raw Normal View History

2014-09-04 08:31:38 +02:00
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
// All rights reserved. Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
2014-06-16 09:52:14 +02:00
// +build freebsd
package main
import "errors"
func memorySize() (uint64, error) {
return 0, errors.New("not implemented")
}