diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-22 19:53:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-22 19:53:00 +0000 |
commit | b67c95834226fc44c435ca97dc5a536bccb30bbf (patch) | |
tree | f38c314327a067bddd5b26db97a608e176a66d9b /lib/System/Unix | |
parent | 5e3c013f81829645ca53a93a92b8032b7049aed3 (diff) |
rename methods in System/Host to be more consistent.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix')
-rw-r--r-- | lib/System/Unix/Host.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/System/Unix/Host.inc b/lib/System/Unix/Host.inc index 7bee66fd0d..205ce2362c 100644 --- a/lib/System/Unix/Host.inc +++ b/lib/System/Unix/Host.inc @@ -23,7 +23,7 @@ using namespace llvm; -std::string llvm::sys::osName() { +std::string llvm::sys::getOSName() { struct utsname info; if (uname(&info)) @@ -32,7 +32,7 @@ std::string llvm::sys::osName() { return info.sysname; } -std::string llvm::sys::osVersion() { +std::string llvm::sys::getOSVersion() { struct utsname info; if (uname(&info)) |