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