mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
8605711f4b
After I made stdio buffered, we were dropping anything unflushed on exit. Since /bin/clear just prints out some escape sequences without a newline, the entire buffer was being discarded. Also add VirtualConsole::clear() that handles clearing of background VC's.
9 lines
117 B
C++
9 lines
117 B
C++
#include <stdio.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
printf("\033[3J\033[H\033[2J");
|
|
fflush(stdout);
|
|
return 0;
|
|
}
|
|
|