diff options
| -rw-r--r-- | main.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,10 +1,13 @@ +#include <locale.h> +#include <math.h> #include <stdio.h> #include <unistd.h> -#include <math.h> #include "framebuffer.h" int main(void) { + setlocale(LC_ALL,""); + term_init(); fprintf(stderr, "%zux%zu\n", term_width, term_height); |
