Lines Matching defs:arg
117 static ulong_t getprognum(/*char *arg*/);
118 static ulong_t getvers(/*char *arg*/);
1605 getprognum (arg)
1606 char *arg;
1611 char *tptr = arg;
1615 rpc = getrpcbyname(arg);
1618 "rpcinfo: %s is unknown service\n", arg);
1623 prognum = strtol(arg, &strptr, 10);
1624 if (strptr == arg || *strptr != '\0') {
1626 "rpcinfo: %s is illegal program number\n", arg);
1634 getvers(arg)
1635 char *arg;
1640 vers = (int)strtol(arg, &strptr, 10);
1641 if (strptr == arg || *strptr != '\0') {
1643 "rpcinfo: %s is illegal version number\n", arg);
1794 /* LINTED E_FUNC_ARG_UNUSED for 1st arg rtype */