summaryrefslogtreecommitdiff
path: root/libcr
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-27 23:16:58 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-10-27 23:21:44 -0600
commit89761191a98f7dce4d1049b9a84c3d645378222a (patch)
tree4a60eab88b515af663171aa9bee343f46ca98115 /libcr
parent7f3507b606b0f5c0c44cc59eb27e87575cf87701 (diff)
Lint that include-guards match the filename
Diffstat (limited to 'libcr')
-rw-r--r--libcr/include/libcr/coroutine.h6
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_ */