From 95eeaa9f9c5ce5cacb566a9f47853fff324a5b10 Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Wed, 10 May 2023 12:09:20 +0200 Subject: Change the name of define in utils.h --- src/utils.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils.h b/src/utils.h index d752a66..b89a6c2 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ -#ifndef _LIST_H_ -#define _LIST_H_ +#ifndef __CUTILS_H__ +#define __CUTILS_H__ #include "version.h" @@ -28,4 +28,4 @@ iterator_t clist_iterator (list_t *); int clist_iterator_has_next(iterator_t); void *clist_iterator_next (iterator_t *); -#endif +#endif /* __CUTILS_H__ */ -- cgit v1.2.3