/*
 * Please do not edit this file.
 * It was generated using rpcgen.
 */

#include <bstring.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <rpc/rpc.h>
#include <sys/time.h>
#include "mywho.h"

/* Default timeout can be changed using clnt_control() */
static struct timeval TIMEOUT = { 25, 0 };

readwho_result *
wholist_1(argp, clnt)
	char **argp;
	CLIENT *clnt;
{
	static readwho_result res;

	bzero((char *)&res, sizeof(res));
	if (clnt_call(clnt, WHOLIST, (xdrproc_t)xdr_wrapstring, argp, (xdrproc_t)xdr_readwho_result, &res, TIMEOUT) != RPC_SUCCESS) {
		return (NULL);
	}
	return (&res);
}
