X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fbase.cpp;h=345c17e2992980ab0087e81e7e482d25504386ea;hb=4e1ae0981e1d6b306d316b2f66a2fc72a36e0e87;hp=30df1f0e7ce5de0733d5ad2afa6d2d22758279f8;hpb=d17465716790010b6e3221f9ce49272110276ccf;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/base.cpp b/src/base.cpp index 30df1f0e7..345c17e29 100644 --- a/src/base.cpp +++ b/src/base.cpp @@ -2,27 +2,21 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ +/* $Core */ + #include "inspircd_config.h" #include "base.h" #include -#include -#include -#include #include "inspircd.h" -#include "modules.h" -#include "helperfuncs.h" const int bitfields[] = {1,2,4,8,16,32,64,128}; const int inverted_bitfields[] = {~1,~2,~4,~8,~16,~32,~64,~128};