curelm            163 libdb/queue.h  		struct type *curelm = (head)->slh_first;		\
curelm            164 libdb/queue.h  		while( curelm->field.sle_next != (elm) )		\
curelm            165 libdb/queue.h  			curelm = curelm->field.sle_next;		\
curelm            166 libdb/queue.h  		curelm->field.sle_next =				\
curelm            167 libdb/queue.h  		    curelm->field.sle_next->field.sle_next;		\
curelm            249 libdb/queue.h  		struct type *curelm = (head)->stqh_first;		\
curelm            250 libdb/queue.h  		while( curelm->field.stqe_next != (elm) )		\
curelm            251 libdb/queue.h  			curelm = curelm->field.stqe_next;		\
curelm            252 libdb/queue.h  		if((curelm->field.stqe_next =				\
curelm            253 libdb/queue.h  		    curelm->field.stqe_next->field.stqe_next) == NULL)	\
curelm            254 libdb/queue.h  			(head)->stqh_last = &(curelm)->field.stqe_next;	\