diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2018-01-08 21:39:21 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2018-01-08 21:39:21 -0500 |
commit | 7d68aac4a50ab4d4881832bc7de568c2b5d4ea8b (patch) | |
tree | 5ed8c3c1958138daefd31d035945432d54088f79 /expr.h | |
parent | 51da1abc549a6642a721371427b31f5990959fad (diff) | |
download | bfs-7d68aac4a50ab4d4881832bc7de568c2b5d4ea8b.tar.xz |
Minor header cleanups
Diffstat (limited to 'expr.h')
-rw-r--r-- | expr.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,8 +14,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * ****************************************************************************/ -#ifndef EXPR_H -#define EXPR_H +#ifndef BFS_EXPR_H +#define BFS_EXPR_H #include "color.h" #include "exec.h" @@ -229,4 +229,4 @@ void dump_expr(CFILE *cfile, const struct expr *expr, bool verbose); */ void free_expr(struct expr *expr); -#endif // EXPR_H +#endif // BFS_EXPR_H |