From 38641114a3b3d11da05f5c4eadef43a1e4454ba9 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Tue, 5 Oct 2004 18:46:59 +0000 Subject: [PATCH] Must include sys/stat.h before declaring a 'struct stat' llvm-svn: 16728 --- lib/System/Unix/MappedFile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/System/Unix/MappedFile.cpp b/lib/System/Unix/MappedFile.cpp index 7e03cd15a81..fec2408c195 100644 --- a/lib/System/Unix/MappedFile.cpp +++ b/lib/System/Unix/MappedFile.cpp @@ -20,6 +20,7 @@ #include "Unix.h" #include #include +#include namespace llvm { using namespace sys;