| 604 | */ |
| 605 | |
| 606 | LIST * builtin_flags( FRAME * frame, int flags ) |
| 607 | { |
| 608 | LIST * const targets = lol_get( frame->args, 0 ); |
| 609 | LISTITER iter = list_begin( targets ); |
| 610 | LISTITER const end = list_end( targets ); |
| 611 | for ( ; iter != end; iter = list_next( iter ) ) |
| 612 | bindtarget( list_item( iter ) )->flags |= flags; |
| 613 | return L0; |
| 614 | } |
| 615 | |
| 616 | |
| 617 | /* |
nothing calls this directly
no test coverage detected