head1             337 src/dps8/utlist.h # define LL_CONCAT(head1,head2)                                                                \
head1             338 src/dps8/utlist.h     LL_CONCAT2(head1,head2,next)
head1             340 src/dps8/utlist.h # define LL_CONCAT2(head1,head2,next)                                                          \
head1             342 src/dps8/utlist.h   LDECLTYPE(head1) _tmp;                                                                       \
head1             343 src/dps8/utlist.h   if (head1) {                                                                                 \
head1             344 src/dps8/utlist.h     _tmp = head1;                                                                              \
head1             348 src/dps8/utlist.h     (head1)=(head2);                                                                           \
head1             556 src/dps8/utlist.h # define DL_CONCAT(head1,head2)                                                                \
head1             557 src/dps8/utlist.h     DL_CONCAT2(head1,head2,prev,next)
head1             559 src/dps8/utlist.h # define DL_CONCAT2(head1,head2,prev,next)                                                     \
head1             561 src/dps8/utlist.h   LDECLTYPE(head1) _tmp;                                                                       \
head1             563 src/dps8/utlist.h     if (head1) {                                                                               \
head1             565 src/dps8/utlist.h         (head2)->prev = (head1)->prev;                                                         \
head1             566 src/dps8/utlist.h         (head1)->prev->next = (head2);                                                         \
head1             567 src/dps8/utlist.h         (head1)->prev = _tmp;                                                                  \
head1             569 src/dps8/utlist.h         (head1)=(head2);                                                                       \