| 139 | static int obufidx = 0; |
| 140 | |
| 141 | staticfn char * |
| 142 | nextobuf(void) |
| 143 | { |
| 144 | obufidx = (obufidx + 1) % NUMOBUF; |
| 145 | return obufs[obufidx]; |
| 146 | } |
| 147 | |
| 148 | /* put the most recently allocated buffer back if possible */ |
| 149 | staticfn void |
no outgoing calls
no test coverage detected