Put the lib/System interface functions in llvm::sys namespace.
authorReid Spencer <rspencer@reidspencer.com>
Sun, 29 Aug 2004 19:19:07 +0000 (19:19 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 29 Aug 2004 19:19:07 +0000 (19:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16083 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/System/Signals.h

index 9f4c00a488d093bcf99adcf72b6e271c737ecce2..7e80cb8daca9eeb92ef4384ff0685b358b705558 100644 (file)
@@ -18,6 +18,7 @@
 #include "llvm/System/Path.h"
 
 namespace llvm {
+namespace sys {
 
   /// This function registers signal handlers to ensure that if a signal gets 
   /// delivered that the named file is removed.
@@ -35,6 +36,7 @@ namespace llvm {
   /// @brief Print a stack trace if a fatal signal occurs.
   void PrintStackTraceOnErrorSignal();
 
+} // End sys namespace
 } // End llvm namespace
 
 #endif