diff options
Diffstat (limited to 'libgo/runtime/runtime1.goc')
-rw-r--r-- | libgo/runtime/runtime1.goc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/runtime/runtime1.goc b/libgo/runtime/runtime1.goc index fd8918ed577..9ce83000b83 100644 --- a/libgo/runtime/runtime1.goc +++ b/libgo/runtime/runtime1.goc @@ -5,10 +5,10 @@ package runtime #include "runtime.h" -func GOMAXPROCS(n int32) (ret int32) { +func GOMAXPROCS(n int) (ret int) { ret = runtime_gomaxprocsfunc(n); } -func NumCPU() (ret int32) { +func NumCPU() (ret int) { ret = runtime_ncpu; } |