| 1158 | } |
| 1159 | |
| 1160 | static int |
| 1161 | rn_freeentry(struct radix_node *rn, void *arg) |
| 1162 | { |
| 1163 | struct radix_head * const rnh = arg; |
| 1164 | struct radix_node *x; |
| 1165 | |
| 1166 | x = (struct radix_node *)rn_delete(rn + 2, NULL, rnh); |
| 1167 | if (x != NULL) |
| 1168 | R_Free(x); |
| 1169 | return (0); |
| 1170 | } |
| 1171 | |
| 1172 | int |
| 1173 | rn_detachhead(void **head) |
nothing calls this directly
no test coverage detected