diff options
| author | LLLL Colonq <llll@colonq> | 2025-10-06 05:06:16 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-10-06 05:06:41 -0400 |
| commit | 09435bffe025a96e0d9c3b44ee9c505973b383bd (patch) | |
| tree | d352772edc096a374d42c50ffa4a7b2b8dad59dd /src/utils.c | |
| parent | 063ab38ce78c370c698e5d148bb9f993ee731ddb (diff) | |
Cleanup, fix bugs
Ensure everything builds on C89
Diffstat (limited to 'src/utils.c')
| -rw-r--r-- | src/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.c b/src/utils.c index a928de4..fcc4762 100644 --- a/src/utils.c +++ b/src/utils.c @@ -4,7 +4,7 @@ #include "utils.h" -void pit_panic_(const char *format, ...) { +void pit_panic(const char *format, ...) { va_list vargs; va_start(vargs, format); vfprintf(stderr, format, vargs); @@ -12,7 +12,7 @@ void pit_panic_(const char *format, ...) { exit(1); } -void pit_debug_(const char *format, ...) { +void pit_debug(const char *format, ...) { va_list vargs; va_start(vargs, format); vfprintf(stderr, format, vargs); |
