repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
revert between 56095 -> 55830 in arch
[AROS.git]
/
arch
/
all-native
/
bootconsole
/
clear.c
blob
03add6ddaeed67c121bf9041763e4632f5c05212
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <bootconsole.h>
7
8
/* Clear the console */
9
void
con_Clear
(
void
)
10
{
11
switch
(
scr_Type
)
12
{
13
case
SCR_TEXT
:
14
txt_Clear
();
15
break
;
16
17
case
SCR_GFX
:
18
fb_Clear
();
19
break
;
20
}
21
}