Changeset 1201 for trunk/src/kash/generated
- Timestamp:
- Oct 7, 2007, 1:57:35 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/generated/init.c
r1200 r1201 173 173 174 174 void 175 init( ) {175 init(shinstance *psh) { 176 176 177 177 /* from exec.c: */ … … 206 206 207 207 void 208 reset( ) {208 reset(shinstance *psh) { 209 209 210 210 /* from eval.c: */ … … 219 219 if (exception != EXSHELLPROC) 220 220 parselleft = parsenleft = 0; /* clear input buffer */ 221 popallfiles( );221 popallfiles(psh); 222 222 } 223 223 224 224 /* from output.c: */ 225 225 { 226 out1 = &output;227 out2 = &errout;226 psh->out1 = &psh->output; 227 psh->out2 = &psh->errout; 228 228 if (memout.buf != NULL) { 229 229 ckfree(memout.buf); … … 252 252 253 253 void 254 initshellproc( ) {254 initshellproc(shinstance *psh) { 255 255 256 256 /* from alias.c: */ … … 271 271 /* from input.c: */ 272 272 { 273 popallfiles( );273 popallfiles(psh); 274 274 } 275 275
Note:
See TracChangeset
for help on using the changeset viewer.