//sunrpc/xdr1/opt2.h
struct mylist {
	char *name;
	long value;
	struct mylist *next;
};
typedef struct mylist mylist;

struct args {
	mylist *list;
};
typedef struct args args;
