aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/runtime1.goc
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/runtime1.goc')
-rw-r--r--src/pkg/runtime/runtime1.goc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pkg/runtime/runtime1.goc b/src/pkg/runtime/runtime1.goc
index 7e5f323c12..64178e98c9 100644
--- a/src/pkg/runtime/runtime1.goc
+++ b/src/pkg/runtime/runtime1.goc
@@ -9,3 +9,6 @@ func mal(n uint32) (ret *uint8) {
ret = mal(n);
}
+func GOMAXPROCS(n int32) (ret int32) {
+ ret = gomaxprocsfunc(n);
+}