1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +00:00

Fix all current build warnings in the userland.

This commit is contained in:
Andreas Kling 2018-11-09 10:18:04 +01:00
parent e9cdb6bb9b
commit 3e0a0dd7ed
12 changed files with 42 additions and 25 deletions

View file

@ -2,6 +2,8 @@
int main(int argc, char** argv)
{
(void) argc;
(void) argv;
printf("Counting to 100000: \033[s");
for (unsigned i = 0; i <= 100000; ++i) {
printf("\033[u\033[s%u", i);