| 154 | static struct winlink *chain = 0; |
| 155 | |
| 156 | staticfn struct winlink * |
| 157 | wl_new(void) |
| 158 | { |
| 159 | struct winlink *wl = (struct winlink *) alloc(sizeof *wl); |
| 160 | |
| 161 | wl->nextlink = 0; |
| 162 | wl->wincp = 0; |
| 163 | wl->linkdata = 0; |
| 164 | |
| 165 | return wl; |
| 166 | } |
| 167 | |
| 168 | staticfn void |
| 169 | wl_addhead(struct winlink *wl) |
no test coverage detected