[llvm-commits] CVS: llvm/lib/System/Unix/MappedFile.cpp

Brian Gaeke gaeke at cs.uiuc.edu
Tue Oct 5 11:47:10 PDT 2004



Changes in directory llvm/lib/System/Unix:

MappedFile.cpp updated: 1.3 -> 1.4
---
Log message:

Must include sys/stat.h before declaring a 'struct stat'


---
Diffs of the changes:  (+1 -0)

Index: llvm/lib/System/Unix/MappedFile.cpp
diff -u llvm/lib/System/Unix/MappedFile.cpp:1.3 llvm/lib/System/Unix/MappedFile.cpp:1.4
--- llvm/lib/System/Unix/MappedFile.cpp:1.3	Mon Oct  4 19:51:26 2004
+++ llvm/lib/System/Unix/MappedFile.cpp	Tue Oct  5 13:46:59 2004
@@ -20,6 +20,7 @@
 #include "Unix.h"
 #include <fcntl.h>
 #include <sys/mman.h>
+#include <sys/stat.h>
 
 namespace llvm {
 using namespace sys;






More information about the llvm-commits mailing list