Put the lib/System interface functions in llvm::sys namespace.

llvm-svn: 16083
This commit is contained in:
Reid Spencer 2004-08-29 19:19:07 +00:00
parent a872cbe3bd
commit 21087b0f7e
1 changed files with 2 additions and 0 deletions

View 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