curelm            159 libdb/queue.h  		struct type *curelm = (head)->slh_first;		\
curelm            160 libdb/queue.h  		while( curelm->field.sle_next != (elm) )		\
curelm            161 libdb/queue.h  			curelm = curelm->field.sle_next;		\
curelm            162 libdb/queue.h  		curelm->field.sle_next =				\
curelm            163 libdb/queue.h  		    curelm->field.sle_next->field.sle_next;		\
curelm            241 libdb/queue.h  		struct type *curelm = (head)->stqh_first;		\
curelm            242 libdb/queue.h  		while( curelm->field.stqe_next != (elm) )		\
curelm            243 libdb/queue.h  			curelm = curelm->field.stqe_next;		\
curelm            244 libdb/queue.h  		if((curelm->field.stqe_next =				\
curelm            245 libdb/queue.h  		    curelm->field.stqe_next->field.stqe_next) == NULL)	\
curelm            246 libdb/queue.h  			(head)->stqh_last = &(curelm)->field.stqe_next;	\