| 164 | |
| 165 | |
| 166 | static state * push_state( stack * const pStack, TARGET * const t, |
| 167 | TARGET * const parent, int const curstate ) |
| 168 | { |
| 169 | state * const pState = alloc_state(); |
| 170 | pState->t = t; |
| 171 | pState->parent = parent; |
| 172 | pState->prev = pStack->stack; |
| 173 | pState->curstate = curstate; |
| 174 | return pStack->stack = pState; |
| 175 | } |
| 176 | |
| 177 | |
| 178 | /* |
no test coverage detected