diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-05-30 16:22:56 +0100 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-06-04 14:14:37 +0100 |
commit | 823ee004fa2f24a9c8781e359967b088cb954140 (patch) | |
tree | cdca9ad7ff3e55abe8a3ef08eb38d5ab1aa9eb31 /runtime/POSIX | |
parent | 32892a0c836c6153808e2c821b86b5d36db51cbf (diff) | |
download | klee-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/POSIX')
-rw-r--r-- | runtime/POSIX/fd.h | 6 |
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 */ |