clang-tidy: Replace C headers with C++ alternatives

run-clang-tidy -header-filter='.*' -checks='-*,modernize-deprecated-headers'

Fixed manually as automatic fix would shuffle headers around.
This commit is contained in:
Urs Fleisch
2023-07-16 07:24:01 +02:00
parent b5516c9718
commit 2a1fb27735
39 changed files with 47 additions and 49 deletions

View File

@ -24,12 +24,12 @@
#include <iostream>
#include <iomanip>
#include <string.h>
#include <cstring>
#include <stdio.h>
#include <cstdio>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <cstdlib>
#include <tlist.h>
#include <fileref.h>