slist.h: add include guards

Signed-off-by: Arne Redlich <arne.redlich@googlemail.com>
This commit is contained in:
Arne Redlich
2012-07-08 13:34:22 +02:00
parent 55a10b1534
commit 121e555897

View File

@@ -15,6 +15,9 @@
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#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__ */