From 493487eb2de75d41e666745ffdfc7f61e35c2f6a Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sun, 15 Nov 2020 16:43:59 +0100 Subject: [PATCH] tupperware: list: add 'TUPPERWARE' to header guard --- include/tupperware/list.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/tupperware/list.h b/include/tupperware/list.h index 8d94b0f..895f2d8 100644 --- a/include/tupperware/list.h +++ b/include/tupperware/list.h @@ -1,5 +1,5 @@ -#ifndef LIST_H -#define LIST_H +#ifndef TUPPERWARE_LIST_H +#define TUPPERWARE_LIST_H #include #include @@ -74,4 +74,4 @@ void list_map(struct list *list, list_map_f map, void *cookie); void list_filter(struct list *res, struct list *list, list_filter_f filter, void *cookie); -#endif /* !LIST_H */ +#endif /* !TUPPERWARE_LIST_H */