mirror of
git://git.acid.vegas/unrealircd.git
synced 2024-11-10 18:16:52 +00:00
38 lines
742 B
C
38 lines
742 B
C
/** Standard include for all UnrealIRCd modules.
|
|
* This should normally provide all of UnrealIRCd's functionality
|
|
* (that is publicly exposed anyway).
|
|
*/
|
|
#include "config.h"
|
|
#include <assert.h>
|
|
#include "struct.h"
|
|
#include "common.h"
|
|
#include "sys.h"
|
|
#include "numeric.h"
|
|
#include "msg.h"
|
|
#include "mempool.h"
|
|
#include "proto.h"
|
|
#include "channel.h"
|
|
#include <time.h>
|
|
#include <sys/stat.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#ifdef GLOBH
|
|
#include <glob.h>
|
|
#endif
|
|
#ifdef _WIN32
|
|
#include <io.h>
|
|
#include <sys/timeb.h>
|
|
#undef GLOBH
|
|
#else
|
|
#include <sys/resource.h>
|
|
#include <utime.h>
|
|
#endif
|
|
#include <fcntl.h>
|
|
#include <signal.h>
|
|
#include "h.h"
|
|
#include "url.h"
|
|
#include "version.h"
|
|
#ifdef USE_LIBCURL
|
|
#include <curl/curl.h>
|
|
#endif
|