diff options
Diffstat (limited to 'lib/System/Win32/Host.inc')
-rw-r--r-- | lib/System/Win32/Host.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/System/Win32/Host.inc b/lib/System/Win32/Host.inc index 7bbf2bd346..4fabc78ade 100644 --- a/lib/System/Win32/Host.inc +++ b/lib/System/Win32/Host.inc @@ -17,11 +17,11 @@ using namespace llvm; -std::string sys::osName() { +std::string sys::getOSName() { return "Windows"; } -std::string sys::osVersion() { +std::string sys::getOSVersion() { OSVERSIONINFO osvi; memset(&osvi, 0, sizeof(osvi)); |