about summary refs log tree commit diff homepage
path: root/runtime/POSIX/fd_64.c
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2013-11-13 09:26:51 -0800
committerCristian Cadar <c.cadar@imperial.ac.uk>2013-11-13 09:26:51 -0800
commitf755e643e22cfcad5ebd95c88f02afe1044c1597 (patch)
tree49134cdee7fbe88cea7bea3f84f4d6769476c7a8 /runtime/POSIX/fd_64.c
parentfa8a587f1448faa867982285ecfa095d5cb052d9 (diff)
parentf0a0ae4d437d7c5bae9e42e0c693da26a87f64d6 (diff)
downloadklee-f755e643e22cfcad5ebd95c88f02afe1044c1597.tar.gz
Merge pull request #60 from MartinNowack/fix_posix
Fix build of POSIX file descriptor functions
Diffstat (limited to 'runtime/POSIX/fd_64.c')
-rw-r--r--runtime/POSIX/fd_64.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/POSIX/fd_64.c b/runtime/POSIX/fd_64.c
index 21a986aa..03fccc49 100644
--- a/runtime/POSIX/fd_64.c
+++ b/runtime/POSIX/fd_64.c
@@ -17,7 +17,6 @@
 
 
 #include "klee/Config/Version.h"
-#if defined(ENV64) || (LLVM_VERSION_CODE < LLVM_VERSION(3, 2))
 #define _LARGEFILE64_SOURCE
 #define _FILE_OFFSET_BITS 64
 #include "fd.h"
@@ -113,5 +112,3 @@ int getdents64(unsigned int fd, struct dirent *dirp, unsigned int count) {
 }
 int __getdents64(unsigned int fd, struct dirent *dirp, unsigned int count)
      __attribute__((alias("getdents64")));
-
-#endif