mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 18:18:19 +00:00
Code modernization: Convert from deprecated C standard library headers
This commit is contained in:
parent
823d80494b
commit
7c4fd382d9
104 changed files with 160 additions and 165 deletions
12
src/util.cc
12
src/util.cc
|
@ -11,20 +11,20 @@
|
|||
#include <mach/task.h>
|
||||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <libgen.h>
|
||||
#include <openssl/md5.h>
|
||||
#include <openssl/sha.h>
|
||||
#include <signal.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/resource.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <cctype>
|
||||
#include <cerrno>
|
||||
#include <csignal>
|
||||
#include <cstdarg>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
||||
#if defined(HAVE_MALLINFO) || defined(HAVE_MALLINFO2)
|
||||
#include <malloc.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue