diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-03-13 11:13:01 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-03-13 11:13:01 -0400 |
commit | 2f0af35773d9f077a8950a3aeb99a78306aeb5cc (patch) | |
tree | 682ecd73a0fdfa49871712c200a3838d0e76c484 /xregex.h | |
parent | 64426f1a89450a0f79b723a4d966f7f9c7492c60 (diff) | |
download | bfs-2f0af35773d9f077a8950a3aeb99a78306aeb5cc.tar.xz |
Rename the include guards for the recently renamed headers
Diffstat (limited to 'xregex.h')
-rw-r--r-- | xregex.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,8 +15,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * ****************************************************************************/ -#ifndef BFS_REGEX_H -#define BFS_REGEX_H +#ifndef BFS_XREGEX_H +#define BFS_XREGEX_H /** * A compiled regular expression. @@ -94,4 +94,4 @@ void bfs_regfree(struct bfs_regex *regex); */ char *bfs_regerror(const struct bfs_regex *regex); -#endif // BFS_REGEX_H +#endif // BFS_XREGEX_H |