| 22 | } |
| 23 | |
| 24 | static void stack_push_front(struct ACL_STACK *s, void *obj) |
| 25 | { |
| 26 | acl_stack_prepend(s, obj); |
| 27 | } |
| 28 | |
| 29 | static void *stack_pop_back(struct ACL_STACK *s) |
| 30 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…