//sunrpc/xdr1/opt1.h
struct optlong {
	bool_t flag;
	union {
		long val;
	} optlong_u;
};
typedef struct optlong optlong;

struct args {
	optlong arg1;
	struct {
		u_int arg2_len;
		long *arg2_val;
	} arg2;
	long *arg3;
};
typedef struct args args;
