Home
last modified time | relevance | path

Searched refs:sstack (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/mailx/
H A Dutil.c310 static struct sstack { struct
314 } *sstack; argument
341 sstack = (struct sstack *)calloc(maxfiles, sizeof(struct sstack)); in source()
342 if (sstack == NULL) { in source()
350 sstack[++ssp].s_file = input; in source()
351 sstack[ssp].s_cond = cond; in source()
352 sstack[ssp].s_loading = loading; in source()
376 cond = sstack[ssp].s_cond; in unstack()
377 loading = sstack[ssp].s_loading; in unstack()
378 input = sstack[ssp--].s_file; in unstack()