diff options
author | data-man <dataman@tutanota.com> | 2022-01-24 20:38:00 +0500 |
---|---|---|
committer | data-man <dataman@tutanota.com> | 2022-01-24 20:38:00 +0500 |
commit | 3cdf67e77da64ba1235265836f29b228deca3642 (patch) | |
tree | f799fcd92f2b52cd3a098d9f39200b8a89b15d80 /regexp.h | |
parent | 09124f64f6eb332e49b4d13c4975fc36260f7f2b (diff) | |
download | bfs-3cdf67e77da64ba1235265836f29b228deca3642.tar.xz |
Apply suggestions from code review
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ /**************************************************************************** * bfs * - * Copyright (C) 2016-2022 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2022 Tavian Barnes <tavianator@tavianator.com> and * + * BFS contributors * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -17,7 +18,7 @@ #ifndef BFS_REGEXP_H #define BFS_REGEXP_H -#ifdef USE_ONIGURUMA +#if BFS_USE_ONIGURUMA == 1 #include <onigposix.h> #else #include <regex.h> |