diff options
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_ */ |