summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/queue.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/sys/queue.h b/sys/sys/queue.h
index 7bb159a129e..fb23a72f759 100644
--- a/sys/sys/queue.h
+++ b/sys/sys/queue.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: queue.h,v 1.34 2011/07/09 00:19:45 pirofti Exp $ */
+/* $OpenBSD: queue.h,v 1.35 2012/01/11 00:06:48 bluhm Exp $ */
/* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */
/*
@@ -122,11 +122,6 @@ struct { \
(var) && ((tvar) = SLIST_NEXT(var, field), 1); \
(var) = (tvar))
-#define SLIST_FOREACH_PREVPTR(var, varp, head, field) \
- for ((varp) = &SLIST_FIRST((head)); \
- ((var) = *(varp)) != SLIST_END(head); \
- (varp) = &SLIST_NEXT((var), field))
-
/*
* Singly-linked List functions.
*/