1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 06:06:38 +02:00

Use C++11 header names instead of their deprecated equivalents.

This commit is contained in:
Sadie Powell
2022-01-04 12:36:35 +00:00
parent 106750db77
commit ec7dfb3675
9 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -23,10 +23,10 @@
#include <sys/wait.h>
#include <sys/stat.h>
#include <errno.h>
#include <sys/types.h>
#include <pwd.h>
#include <cerrno>
#include <grp.h>
#include <pwd.h>
#include <sys/types.h>
#endif
Anope::string Anope::ConfigDir = "conf", Anope::DataDir = "data", Anope::ModuleDir = "lib", Anope::LocaleDir = "locale", Anope::LogDir = "logs";