From ed8ed793bf6935d4b7e0914704d40937a873e868 Mon Sep 17 00:00:00 2001 From: "Pawel \"l0ner\" Soltys" Date: Sun, 18 Jan 2015 17:27:08 +0100 Subject: [PATCH] renamed bsd/common.h to getsysctl.h to better reflect it's function --- bsd/cpu.cc | 2 +- bsd/{common.h => getsysctl.h} | 0 bsd/load.cc | 2 +- bsd/memory_freebsd.cc | 2 +- bsd/memory_openbsd.cc | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename bsd/{common.h => getsysctl.h} (100%) diff --git a/bsd/cpu.cc b/bsd/cpu.cc index 9235ed1..70e3560 100644 --- a/bsd/cpu.cc +++ b/bsd/cpu.cc @@ -23,7 +23,7 @@ #include #include // usleep -#include "common.h" +#include "getsysctl.h" #include "cpu.h" float cpu_percentage( unsigned int cpu_usage_delay ) diff --git a/bsd/common.h b/bsd/getsysctl.h similarity index 100% rename from bsd/common.h rename to bsd/getsysctl.h diff --git a/bsd/load.cc b/bsd/load.cc index 8b05ba4..1ae14cc 100644 --- a/bsd/load.cc +++ b/bsd/load.cc @@ -26,7 +26,7 @@ #include // floorf() #include -#include "common.h" +#include "getsysctl.h" #include "load.h" #include "../luts.h" diff --git a/bsd/memory_freebsd.cc b/bsd/memory_freebsd.cc index d37f8b4..cf86e96 100644 --- a/bsd/memory_freebsd.cc +++ b/bsd/memory_freebsd.cc @@ -23,7 +23,7 @@ #include #include -#include "common.h" +#include "getsysctl.h" #include "memory.h" #include "../luts.h" #include "../config.h" diff --git a/bsd/memory_openbsd.cc b/bsd/memory_openbsd.cc index ba00c6b..5de361e 100644 --- a/bsd/memory_openbsd.cc +++ b/bsd/memory_openbsd.cc @@ -26,7 +26,7 @@ #include #include -#include "common.h" +#include "getsysctl.h" #include "memory.h" #include "../luts.h" #include "../config.h"