Remove unnecessary #includes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19070 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-12-20 06:38:12 +00:00
parent 099557b629
commit cdb28bed6b

View File

@ -12,11 +12,6 @@
//===----------------------------------------------------------------------===//
#include "llvm/Debugger/SourceFile.h"
#include "llvm/Support/SlowOperationInformer.h"
#include <iostream>
#include <cerrno>
#include <fcntl.h>
#include <unistd.h>
using namespace llvm;
/// readFile - Load Filename
@ -75,4 +70,3 @@ void SourceFile::getSourceLine(unsigned LineNo, const char *&LineStart,
assert(LineEnd >= LineStart && "We somehow got our pointers swizzled!");
}