diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-09-04 22:49:54 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-09-04 22:49:54 +0900 |
| commit | e342992a135e68d10716d9da920cb3af62a7d750 (patch) | |
| tree | 49a1a94a87204c672a9f57890ec9d9c23989e2f6 /src/common.c | |
| parent | 17809b0571a038ec9eba3fc3620ba77a38c98afd (diff) | |
| download | ducc-e342992a135e68d10716d9da920cb3af62a7d750.tar.gz ducc-e342992a135e68d10716d9da920cb3af62a7d750.tar.zst ducc-e342992a135e68d10716d9da920cb3af62a7d750.zip | |
feat: use <stdio.h> in ducc sources
Diffstat (limited to 'src/common.c')
| -rw-r--r-- | src/common.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common.c b/src/common.c index ab71851..02bb712 100644 --- a/src/common.c +++ b/src/common.c @@ -1,4 +1,6 @@ #include "common.h" +#include <stdarg.h> +#include <stdio.h> void fatal_error(const char* msg, ...) { va_list args; |
