aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-05-10 12:09:20 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-05-10 12:09:20 +0200
commit95eeaa9f9c5ce5cacb566a9f47853fff324a5b10 (patch)
treeee81cb3fa8f4ccd25c1e862fe0b53c7e3af29486
parent9625b225f848cc9f514aaacaa30a68da77419ff7 (diff)
downloadutils-95eeaa9f9c5ce5cacb566a9f47853fff324a5b10.tar.gz
utils-95eeaa9f9c5ce5cacb566a9f47853fff324a5b10.zip
Change the name of define in utils.h
-rw-r--r--src/utils.h6
1 files 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__ */