bump copyright date on affected files and version
[AROS.git] / arch / all-native / bootconsole / clear.c
blob8739637142c768b9b1f2e82ebfdc5270f01f7e89
1 #include <bootconsole.h>
3 /* Clear the console */
4 void con_Clear(void)
6 switch (scr_Type)
8 case SCR_TEXT:
9 txt_Clear();
10 break;
12 case SCR_GFX:
13 fb_Clear();
14 break;