diff options
| author | 2009-08-05 11:32:45 +0000 | |
|---|---|---|
| committer | 2009-08-05 11:32:45 +0000 | |
| commit | fabedcb1d7746f855fcf75f1c83fee68744d56a9 (patch) | |
| tree | eab62b180ce15c3f01c4bf49a329fdacf3d49fe1 | |
| parent | Patch to allow configure to pick up OpenSSL on CentOS/RH, thanks to maniaphob... (diff) | |
System includes to make newer gcc happy.
Until gcc 4.5, when it all gets rearranged again.
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@11495 e03df62e-2008-0410-955e-edbf42e46eb7
| -rw-r--r-- | include/inspircd.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 15938b465..cca558942 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -30,11 +30,20 @@ #undef ERROR #endif + // Required system headers. +#include <ctime> +#include <cstdarg> +#include <algorithm> +#include <cmath> +#include <cstring> +#include <climits> +#include <cstdio> #include <time.h> #include <string> #include <sstream> #include <list> -#include <climits> + + #include "inspircd_config.h" #include "users.h" #include "channels.h" |
