about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStepan Koltsov <stepan.koltsov@gmail.com>2015-09-05 05:03:48 +0300
committerStepan Koltsov <stepan.koltsov@gmail.com>2015-09-05 05:03:48 +0300
commit6ca5d52bd2888b0871c9e94da2cd3d5cba796a3a (patch)
treea3075de3d8c1f9e544bb996b5f9e5679bbc6897b
parent1110f1e873e9c082333b8239422e482b66d6645f (diff)
downloadrust-6ca5d52bd2888b0871c9e94da2cd3d5cba796a3a.tar.gz
rust-6ca5d52bd2888b0871c9e94da2cd3d5cba796a3a.zip
get_num_cpus function should be static
No need to export this symbol. `rust_get_num_cpus` is exported.
-rw-r--r--src/rt/rust_builtin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_builtin.c b/src/rt/rust_builtin.c
index 37ce30d7066..cf497438a6b 100644
--- a/src/rt/rust_builtin.c
+++ b/src/rt/rust_builtin.c
@@ -83,7 +83,7 @@ rust_dirent_t_size() {
 }
 
 #if defined(__BSD__)
-int
+static int
 get_num_cpus() {
     /* swiped from http://stackoverflow.com/questions/150355/
        programmatically-find-the-number-of-cores-on-a-machine */
@@ -110,7 +110,7 @@ get_num_cpus() {
     return numCPU;
 }
 #elif defined(__GNUC__)
-int
+static int
 get_num_cpus() {
     return sysconf(_SC_NPROCESSORS_ONLN);
 }