Use C++ versions of headers
This commit is contained in:
parent
830df177b5
commit
5b6d2afa9c
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue