op_rec process_op(void)
{
        /* Produre operator descriptor. */
        op_rec o;

        if (current_token == PLUSOP)
                o.operator = PLUS;
        else
                o.operator = MINUS;

        return o;
}