#include <sys/types.h>
#include <stdio.h>
u_char option_cmd; /* has value WILL, WONT, DO, or DONT *//*ARGSUSED*/int
recopt(FILE *sfp, FILE *tfp, int c)
{
option_cmd = c;
return 0;
}
/*------------------------------------------------------------------------ * no_op - do nothing *------------------------------------------------------------------------ *//*ARGSUSED*/int
no_op(FILE *sfp, FILE *tfp, int c)
{
return 0;
}