Home | History | Annotate | Download | only in intl

Lines Matching defs:newp

87   struct expression *newp;
95 newp = (struct expression *) malloc (sizeof (*newp));
96 if (newp != NULL)
98 newp->nargs = nargs;
99 newp->operation = op;
101 newp->val.args[i] = args[i];
102 return newp;