Never set any signal handlers.
[oota-llvm.git] / lib / Archive / ArchiveReader.cpp
index afa2c63d0503f51a20c3125990f0f452a51fa693..be023538e18e5813de740b212c3ca3413d7a78f9 100644 (file)
@@ -1,9 +1,9 @@
-//===- ReadArchive.cpp - Code to read LLVM bytecode from .a files ---------===//
+//===- ArchiveReader.cpp - Code to read LLVM bytecode from .a files -------===//
 //
 // This file implements the ReadArchiveFile interface, which allows a linker to
 // read all of the LLVM bytecode files contained in a .a file.  This file
 // understands the standard system .a file format.  This can only handle the .a
-// variant prevelant on linux systems so far, but may be extended.  See
+// variant prevalent on Linux systems so far, but may be extended.  See
 // information in this source file for more information:
 //   http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/bfd/archive.c?cvsroot=src
 //
@@ -11,9 +11,9 @@
 
 #include "llvm/Bytecode/Reader.h"
 #include "llvm/Module.h"
-#include <sys/stat.h>
-#include <sys/mman.h>
-#include <fcntl.h>
+#include "Config/sys/stat.h"
+#include "Config/sys/mman.h"
+#include "Config/fcntl.h"
 
 namespace {
   struct ar_hdr {
@@ -130,7 +130,7 @@ static bool ReadArchiveBuffer(const std::string &Filename,
 }
 
 
-// ReadArchiveFile - Read bytecode files from the specfied .a file, returning
+// ReadArchiveFile - Read bytecode files from the specified .a file, returning
 // true on error, or false on success.  This does not support reading files from
 // standard input.
 //