/* recopt.c - recopt, no_op */ #include #include u_char option_cmd; /* has value WILL, WONT, DO, or DONT */ /*------------------------------------------------------------------------ * recopt - record option type *------------------------------------------------------------------------ */ /*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; }