Code modernization: Convert from deprecated C standard library headers

This commit is contained in:
Tim Wojtulewicz 2022-06-24 19:36:15 +00:00 committed by Tim Wojtulewicz
parent 823d80494b
commit 7c4fd382d9
104 changed files with 160 additions and 165 deletions

View file

@ -7,18 +7,18 @@
#include <sys/types.h>
#ifdef TIME_WITH_SYS_TIME
#include <sys/time.h>
#include <time.h>
#include <ctime>
#else
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#else
#include <time.h>
#include <ctime>
#endif
#endif
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include <csignal>
#include <cstdlib>
extern "C"
{