about summary refs log tree commit diff homepage
path: root/runtime
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2019-05-30 16:22:56 +0100
committerMartinNowack <martin.nowack@gmail.com>2019-06-04 14:14:37 +0100
commit823ee004fa2f24a9c8781e359967b088cb954140 (patch)
treecdca9ad7ff3e55abe8a3ef08eb38d5ab1aa9eb31 /runtime
parent32892a0c836c6153808e2c821b86b5d36db51cbf (diff)
downloadklee-823ee004fa2f24a9c8781e359967b088cb954140.tar.gz
Fixed identifiers used in ifdefs to (1) not use reserved names and (2) use a consistent naming convention
Diffstat (limited to 'runtime')
-rw-r--r--runtime/POSIX/fd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/POSIX/fd.h b/runtime/POSIX/fd.h
index 067f217e..a5e15c9b 100644
--- a/runtime/POSIX/fd.h
+++ b/runtime/POSIX/fd.h
@@ -7,8 +7,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef __EXE_FD__
-#define __EXE_FD__
+#ifndef KLEE_FD_H
+#define KLEE_FD_H
 
 #include "klee/Config/config.h"
 
@@ -108,4 +108,4 @@ int __fd_ftruncate(int fd, off64_t length);
 int __fd_statfs(const char *path, struct statfs *buf);
 int __fd_getdents(unsigned int fd, struct dirent64 *dirp, unsigned int count);
 
-#endif /* __EXE_FD__ */
+#endif /* KLEE_FD_H */