tupperware: list: add 'TUPPERWARE' to header guard

This commit is contained in:
Bruno BELANYI 2020-11-15 16:43:59 +01:00
parent 5a97ab4d37
commit 493487eb2d

View file

@ -1,5 +1,5 @@
#ifndef LIST_H
#define LIST_H
#ifndef TUPPERWARE_LIST_H
#define TUPPERWARE_LIST_H
#include <stdbool.h>
#include <stddef.h>
@ -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 */