mirror of
https://github.com/godotengine/godot.git
synced 2025-10-28 04:04:24 +00:00
Core: Modernize C headers with C++ equivalents
This commit is contained in:
parent
a8ece29adc
commit
01fc9aee6c
101 changed files with 126 additions and 168 deletions
|
|
@ -69,19 +69,18 @@
|
|||
#endif
|
||||
|
||||
#include <dlfcn.h>
|
||||
#include <errno.h>
|
||||
#include <poll.h>
|
||||
#include <signal.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/resource.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/wait.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
#include <cerrno>
|
||||
#include <csignal>
|
||||
#include <cstdarg>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <ctime>
|
||||
|
||||
#ifndef RTLD_DEEPBIND
|
||||
#define RTLD_DEEPBIND 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue