This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2014-06-16 09:52:14 +02:00
|
|
|
// +build freebsd
|
2014-06-12 20:47:46 +02:00
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
|
|
func memorySize() (uint64, error) {
|
|
|
|
|
return 0, errors.New("not implemented")
|
|
|
|
|
}
|