diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-07 01:32:21 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-07 01:32:21 +0000 |
commit | 7db949df789383acce98ef072f08794fdd5bd04e (patch) | |
tree | 30a8b3e2bea69508eb5da0dbca173cbe23052743 /lib/System | |
parent | 748f98f90836dbb4c36fea67c9ebe7b6bb13255e (diff) | |
download | external_llvm-7db949df789383acce98ef072f08794fdd5bd04e.zip external_llvm-7db949df789383acce98ef072f08794fdd5bd04e.tar.gz external_llvm-7db949df789383acce98ef072f08794fdd5bd04e.tar.bz2 |
Fix a bunch of namespace pollution.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78363 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System')
-rw-r--r-- | lib/System/Unix/Alarm.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Unix/Alarm.inc b/lib/System/Unix/Alarm.inc index 28ff1b8..fb42b6c 100644 --- a/lib/System/Unix/Alarm.inc +++ b/lib/System/Unix/Alarm.inc @@ -67,6 +67,6 @@ int sys::AlarmStatus() { return 0; } -void Sleep(unsigned n) { +void sys::Sleep(unsigned n) { ::sleep(n); } |