diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-27 23:16:58 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-27 23:21:44 -0600 |
commit | 89761191a98f7dce4d1049b9a84c3d645378222a (patch) | |
tree | 4a60eab88b515af663171aa9bee343f46ca98115 /libcr | |
parent | 7f3507b606b0f5c0c44cc59eb27e87575cf87701 (diff) |
Lint that include-guards match the filename
Diffstat (limited to 'libcr')
-rw-r--r-- | libcr/include/libcr/coroutine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcr/include/libcr/coroutine.h b/libcr/include/libcr/coroutine.h index 458e74e..6edc4df 100644 --- a/libcr/include/libcr/coroutine.h +++ b/libcr/include/libcr/coroutine.h @@ -23,8 +23,8 @@ * See also: coroutine_chan.h is a 1-way channel system built on top * of coroutine.{h,c}. */ -#ifndef _COROUTINE_H_ -#define _COROUTINE_H_ +#ifndef _LIBCR_COROUTINE_H_ +#define _LIBCR_COROUTINE_H_ #include <stddef.h> /* for size_t */ #include <stdbool.h> /* for bool */ @@ -176,4 +176,4 @@ struct cr_cid_info { void cr_cid_info(cid_t cid, struct cr_cid_info *ret); -#endif /* _COROUTINE_H_ */ +#endif /* _LIBCR_COROUTINE_H_ */ |