From 2b0e05cbc1e4d9beccd3a5867c8730880f6ecc10 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Fri, 23 Aug 2024 20:43:31 +0300 Subject: Start to rewriting code Since there's some UB in the master I decided to rewrite code from scratch again. I hope that attempt will be better :D --- src/utils.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index 978396c..ba5638f 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1,6 +1,3 @@ -#include "utils.h" -#include "types.h" - #include #include #include @@ -9,7 +6,7 @@ #include "main.h" -noreturn void die(i32 code, s8 *fmt, ...) +noreturn void die(int code, char *fmt, ...) { va_list args; -- cgit 1.4.1