| # | Line 154 | Line 154 | char *name; | |
|---|---|---|
| 154 | ||
| 155 | ||
| 156 | #ifdef OUTCHAN | |
| 157 | < | chanout() /* set output channels */ |
| 157 | > | chanout(cs) /* set output channels */ |
| 158 | > | int (*cs)(); |
| 159 | { | |
| 160 | register EPNODE *ep; | |
| 161 | ||
| 162 | for (ep = outchan; ep != NULL; ep = ep->sibling) | |
| 163 | < | chanset(ep->v.kid->v.chan, evalue(ep->v.kid->sibling)); |
| 163 | > | (*cs)(ep->v.kid->v.chan, evalue(ep->v.kid->sibling)); |
| 164 | ||
| 165 | } | |
| 166 | #endif | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |