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 /xtime.h | |
parent | 64426f1a89450a0f79b723a4d966f7f9c7492c60 (diff) | |
download | bfs-2f0af35773d9f077a8950a3aeb99a78306aeb5cc.tar.xz |
Rename the include guards for the recently renamed headers
Diffstat (limited to 'xtime.h')
-rw-r--r-- | xtime.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ /**************************************************************************** * bfs * - * Copyright (C) 2020 Tavian Barnes <tavianator@tavianator.com> * + * Copyright (C) 2020-2022 Tavian Barnes <tavianator@tavianator.com> * * * * Permission to use, copy, modify, and/or distribute this software for any * * purpose with or without fee is hereby granted. * @@ -18,8 +18,8 @@ * Date/time handling. */ -#ifndef BFS_TIME_H -#define BFS_TIME_H +#ifndef BFS_XTIME_H +#define BFS_XTIME_H #include <time.h> @@ -83,4 +83,4 @@ int xtimegm(struct tm *tm, time_t *timep); */ int parse_timestamp(const char *str, struct timespec *result); -#endif // BFS_TIME_H +#endif // BFS_XTIME_H |