Make sure IdentifyFileType is in the sys namespace.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17806 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/System/Path.cpp b/lib/System/Path.cpp
index a530f28..1504f0d 100644
--- a/lib/System/Path.cpp
+++ b/lib/System/Path.cpp
@@ -23,7 +23,7 @@
 //===----------------------------------------------------------------------===//
 
 LLVMFileType 
-IdentifyFileType(const char*magic, unsigned length) {
+sys::IdentifyFileType(const char*magic, unsigned length) {
   assert(magic && "Invalid magic number string");
   assert(length >=4 && "Invalid magic number length");
   switch (magic[0]) {