Remove the non-standard and undocumented STAILQ_REMOVE_HEAD_UNTIL()

macro now that we no longer use it.
This commit is contained in:
Ruslan Ermilov 2006-10-24 11:19:21 +00:00
parent 9a583dc7ae
commit e61a65b665
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=163649

View File

@ -300,11 +300,6 @@ struct { \
(head)->stqh_last = &STAILQ_FIRST((head)); \
} while (0)
#define STAILQ_REMOVE_HEAD_UNTIL(head, elm, field) do { \
if ((STAILQ_FIRST((head)) = STAILQ_NEXT((elm), field)) == NULL) \
(head)->stqh_last = &STAILQ_FIRST((head)); \
} while (0)
/*
* List declarations.
*/