aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/getncpu-aix.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/runtime/getncpu-aix.c')
-rw-r--r--libgo/runtime/getncpu-aix.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/libgo/runtime/getncpu-aix.c b/libgo/runtime/getncpu-aix.c
deleted file mode 100644
index 064eed8..0000000
--- a/libgo/runtime/getncpu-aix.c
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2012 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-#include <sys/types.h>
-#include <sys/systemcfg.h>
-
-#include "runtime.h"
-#include "defs.h"
-
-int32_t
-getproccount(void)
-{
- return _system_configuration.ncpus;
-}