diff --git a/include/slist.h b/include/slist.h index 56c8364..0631b17 100644 --- a/include/slist.h +++ b/include/slist.h @@ -15,6 +15,9 @@ along with this program; if not, see . */ +#ifndef __iscsi_slist_h__ +#define __iscsi_slist_h__ + #define SLIST_ADD(list, item) \ do { \ (item)->next = (*list); \ @@ -46,6 +49,4 @@ (*list) = head; \ } - - - +#endif /* __iscsi_slist_h__ */