~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to awkgram.y

  • Committer: Arnold D. Robbins
  • Date: 2013-01-25 08:50:12 UTC
  • Revision ID: git-v1:da1d22c183f5d8241538524665e572c5c6a15865
Considerable additional portability fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
static int install_function(char *fname, INSTRUCTION *fi, INSTRUCTION *plist);
47
47
static NODE *mk_rexp(INSTRUCTION *exp);
48
48
static void param_sanity(INSTRUCTION *arglist);
49
 
static int parms_shadow(INSTRUCTION *pc, int *shadow);
 
49
static int parms_shadow(INSTRUCTION *pc, bool *shadow);
50
50
#ifndef NO_LINT
51
51
static int isnoeffect(OPCODE type);
52
52
#endif
3994
3994
/* parms_shadow --- check if parameters shadow globals */
3995
3995
 
3996
3996
static int
3997
 
parms_shadow(INSTRUCTION *pc, int *shadow)
 
3997
parms_shadow(INSTRUCTION *pc, bool *shadow)
3998
3998
{
3999
3999
        int pcount, i;
4000
4000
        bool ret = false;