about summary refs log tree commit diff homepage
path: root/runtime/POSIX
diff options
context:
space:
mode:
authorJulian Büning <julian.buening@rwth-aachen.de>2019-05-30 18:21:36 +0200
committerMartinNowack <martin.nowack@gmail.com>2019-06-04 14:14:37 +0100
commitaf97960c8d3761b9fd86dff9ef4eee3999448194 (patch)
treef3d97418992115e79aec68e14a2b6dc232cdfdf7 /runtime/POSIX
parent823ee004fa2f24a9c8781e359967b088cb954140 (diff)
downloadklee-af97960c8d3761b9fd86dff9ef4eee3999448194.tar.gz
make include guard naming consistent
Diffstat (limited to 'runtime/POSIX')
-rw-r--r--runtime/POSIX/FreeBSD.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/POSIX/FreeBSD.h b/runtime/POSIX/FreeBSD.h
index ec7ce1ef..58eebee6 100644
--- a/runtime/POSIX/FreeBSD.h
+++ b/runtime/POSIX/FreeBSD.h
@@ -1,5 +1,5 @@
-#ifndef _FREEBSD_SHIMS_H
-#define _FREEBSD_SHIMS_H
+#ifndef KLEE_FREEBSD_H
+#define KLEE_FREEBSD_H
 
 // termios maps
 #define TCGETS  TIOCGETA
@@ -435,4 +435,4 @@ struct rlimit64;
 #define	__NR_numa_setaffinity	SYS_numa_setaffinity
 #define	__NR_MAXSYSCALL	SYS_MAXSYSCALL
 
-#endif //_FREEBSD_SHIMS_H
\ No newline at end of file
+#endif /* KLEE_FREEBSD_H */