Unconditionally define sc_paste().

This commit is contained in:
Kazutaka YOKOTA 2000-01-20 13:23:03 +00:00
parent acdf858c9b
commit e17b116645
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56329
2 changed files with 0 additions and 4 deletions

View File

@ -3345,7 +3345,6 @@ sc_show_font(scr_stat *scp, int page)
}
#endif /* !SC_NO_FONT_LOADING */
#ifndef SC_NO_CUTPASTE
void
sc_paste(scr_stat *scp, u_char *p, int count)
{
@ -3361,7 +3360,6 @@ sc_paste(scr_stat *scp, u_char *p, int count)
(*linesw[tp->t_line].l_rint)(rmap[*p++], tp);
}
}
#endif /* SC_NO_CUTPASTE */
void
sc_bell(scr_stat *scp, int pitch, int duration)

View File

@ -506,9 +506,7 @@ int sc_clean_up(scr_stat *scp);
int sc_switch_scr(sc_softc_t *sc, u_int next_scr);
void sc_alloc_scr_buffer(scr_stat *scp, int wait, int discard);
int sc_init_emulator(scr_stat *scp, char *name);
#ifndef SC_NO_CUTPASTE
void sc_paste(scr_stat *scp, u_char *p, int count);
#endif /* SC_NO_CUTPASTE */
void sc_bell(scr_stat *scp, int pitch, int duration);
/* schistory.c */