diff options
Diffstat (limited to 'Demos/RetroFetch/main.cpp')
-rw-r--r-- | Demos/RetroFetch/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Demos/RetroFetch/main.cpp b/Demos/RetroFetch/main.cpp index 1b0abfdf08..4e465d67b5 100644 --- a/Demos/RetroFetch/main.cpp +++ b/Demos/RetroFetch/main.cpp @@ -1,8 +1,8 @@ +#include <AK/Assertions.h> +#include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> -#include <fcntl.h> -#include <AK/Assertions.h> static void moveto(int row, int column) { @@ -68,4 +68,3 @@ int main() printf("\033[u\n"); return 0; } - |