type1
link_fieldtype(FIELDTYPE *type1, FIELDTYPE *type2)
T((T_CALLED("link_fieldtype(%p,%p)"), (void *)type1, (void *)type2));
if (type1 && type2)
if ((type1->status & _HAS_ARGS) || (type2->status & _HAS_ARGS))
if ((type1->status & _HAS_CHOICE) || (type2->status & _HAS_CHOICE))
nftyp->left = type1;
type1->ref++;
return(type1(msgvec, cmd, 0, 0));
return(type1(msgvec, NULL, 1, 1));
return(type1(msgvec, NULL, 0, 1));
return(type1(msgvec, NULL, 1, 0));
return(type1(msgvec, NULL, 0, 0));
int type1(int *, char *, int, int);