aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-03-21 21:58:47 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-03-21 21:58:47 +0000
commitef07303c2039b61df2973f394b4e37ea19bfe484 (patch)
tree600a5d646464cd9e4ee72304c8801281a4283ecc /version_info.c
parent8fa2e54773df76125f52efcf93bfe9f14b787118 (diff)
Make internal functions static.
svn path=/trunk/; revision=48465
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/version_info.c b/version_info.c
index 511d9fc158..a70bb03e78 100644
--- a/version_info.c
+++ b/version_info.c
@@ -646,7 +646,7 @@ do_cpuid(guint32 *CPUInfo, int selector _U_){
* the get_cpuid() routine will return 0 in CPUInfo[0] if cpuinfo isn't available.
*/
-void get_cpu_info(GString *str _U_)
+static void get_cpu_info(GString *str _U_)
{
int CPUInfo[4];
char CPUBrandString[0x40];
@@ -675,7 +675,7 @@ void get_cpu_info(GString *str _U_)
}
-void get_mem_info(GString *str _U_)
+static void get_mem_info(GString *str _U_)
{
#if defined(_WIN32)
MEMORYSTATUSEX statex;