Use C++ versions of headers

This commit is contained in:
Jochen Topf 2026-07-24 14:53:28 +02:00
parent 830df177b5
commit 5b6d2afa9c
1 changed files with 2 additions and 2 deletions

View File

@ -2,10 +2,10 @@
#include <unistd.h> #include <unistd.h>
// used for va_list in debug-print methods // used for va_list in debug-print methods
#include <stdarg.h> #include <cstdarg>
// file io lib // file io lib
#include <stdio.h> #include <cstdio>
// getopt is used to check for the --color-flag // getopt is used to check for the --color-flag
#include <getopt.h> #include <getopt.h>