audiod_command.c: Trivial whitespace fix.
[paraslash.git] / list.h
diff --git a/list.h b/list.h
index e4b5a1f67b066b73d2a89e0b2e9a7cd6eac00a66..66c6d91525031261ff94cd3028e672cb340c06cd 100644 (file)
--- a/list.h
+++ b/list.h
@@ -156,17 +156,6 @@ static inline int list_empty(const struct list_head *head)
 #define list_entry(ptr, type, member) \
        container_of(ptr, type, member)
 
-/**
- * iterate over a list safe against removal of list entry
- *
- * \param pos the &struct list_head to use as a loop counter.
- * \param n another &struct list_head to use as temporary storage
- * \param head the head for your list.
- */
-#define list_for_each_safe(pos, n, head) \
-       for (pos = (head)->next, n = pos->next; pos != (head); \
-               pos = n, n = pos->next)
-
 /**
  * iterate over list of given type
  *