summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/osx/smc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osx/smc.cpp b/src/osx/smc.cpp
index 5b52851..2482ae3 100644
--- a/src/osx/smc.cpp
+++ b/src/osx/smc.cpp
@@ -1,6 +1,6 @@
#include "smc.hpp"
-UInt32 _strtoul(char *str, int size, int base) {
+static UInt32 _strtoul(char *str, int size, int base) {
UInt32 total = 0;
int i;
@@ -14,7 +14,7 @@ UInt32 _strtoul(char *str, int size, int base) {
return total;
}
-void _ultostr(char *str, UInt32 val) {
+static void _ultostr(char *str, UInt32 val) {
str[0] = '\0';
sprintf(str, "%c%c%c%c",
(unsigned int)val >> 24,