Build and memSize impl for Solaris

This commit is contained in:
Jakob Borg
2014-06-16 09:52:14 +02:00
parent 5a98f4e47c
commit 12eda0449a
6 changed files with 33 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
// +build windows solaris
package main
import "errors"
func upgrade() error {
return errors.New("Upgrade currently unsupported on Windows")
}