From 823ee004fa2f24a9c8781e359967b088cb954140 Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Thu, 30 May 2019 16:22:56 +0100 Subject: Fixed identifiers used in ifdefs to (1) not use reserved names and (2) use a consistent naming convention --- runtime/POSIX/fd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime') 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 */ -- cgit 1.4.1