Home | History | Annotate | Download | only in sh

Lines Matching defs:n3

186 	union node *ntop, *n1, *n2, *n3;
204 n3 = stalloc(sizeof(struct nredir));
205 n3->type = NBACKGND;
206 n3->nredir.n = n2;
207 n3->nredir.redirect = NULL;
208 n2 = n3;
221 n3 = stalloc(sizeof(struct nbinary));
222 n3->type = NSEMI;
223 n3->nbinary.ch1 = n1->nbinary.ch2;
224 n3->nbinary.ch2 = n2;
225 n1->nbinary.ch2 = n3;
226 n1 = n3;
263 union node *n1, *n2, *n3;
279 n3 = stalloc(sizeof(struct nbinary));
280 n3->type = t;
281 n3->nbinary.ch1 = n1;
282 n3->nbinary.ch2 = n2;
283 n1 = n3;