170 |
|
|
171 |
|
void |
172 |
|
eputs( /* put string to stderr */ |
173 |
< |
char *s |
173 |
> |
const char *s |
174 |
|
) |
175 |
|
{ |
176 |
|
static int midline = 0; |
193 |
|
quit(int ec) /* make sure exit is called */ |
194 |
|
{ |
195 |
|
if (ray_pnprocs > 0) /* close children if any */ |
196 |
< |
ray_pclose(0); |
196 |
> |
ray_pclose(0); |
197 |
> |
else if (ray_pnprocs < 0) |
198 |
> |
_exit(ec); /* avoid flush in child */ |
199 |
|
exit(ec); |
200 |
|
} |
201 |
|
|
539 |
|
int n |
540 |
|
) |
541 |
|
{ |
540 |
– |
extern char *fskip(); |
542 |
|
static char expval[32]; |
543 |
|
static FILE *expfp = NULL; |
544 |
|
static int curfrm = 0; |