* gcc.dg/stack-usage-1.c: Remove dg-options line for sh targets
[official-gcc.git] / libgo / runtime / runtime1.goc
blobfd8918ed57733d3ba4e154d0cf8d7327f861da4b
1 // Copyright 2010 The Go Authors.  All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package runtime
6 #include "runtime.h"
8 func GOMAXPROCS(n int32) (ret int32) {
9         ret = runtime_gomaxprocsfunc(n);
12 func NumCPU() (ret int32) {
13         ret = runtime_ncpu;