From 89761191a98f7dce4d1049b9a84c3d645378222a Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 27 Oct 2024 23:16:58 -0600 Subject: Lint that include-guards match the filename --- libcr/include/libcr/coroutine.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libcr') 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 /* for size_t */ #include /* 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_ */ -- cgit v1.2.3-2-g168b