Home | History | Annotate | Download | only in nawk-20071023

Lines Matching refs:ndef

224 	int i, ncall, ndef;
242 ndef = (int) fcn->fval; /* args in defn */
243 dprintf( ("calling %s, %d args (%d in defn), fp=%d\n", s, ncall, ndef, (int) (fp-frame)) );
244 if (ncall > ndef)
246 s, ncall, ndef);
247 if (ncall + ndef > NARGS)
248 FATAL("function %s has %d arguments, limit %d", s, ncall+ndef, NARGS);
263 for ( ; i < ndef; i++) { /* add null args for ones not provided */
278 fp->nargs = ndef; /* number defined with (excess are locals) */
285 for (i = 0; i < ndef; i++) {