/************************************************************************ * IRC - Internet Relay Chat, include/sys.h * * Copyright (C) 2000-2003 TR-IRCD Development * * Copyright (C) 1990 University of Oulu, Computing Center * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ /* * $Id: sys.h,v 1.8 2005/01/18 17:40:48 tr-ircd Exp $ */ #ifndef __sys_include__ #define __sys_include__ 1 #include "setup.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_SYS_SELECT_H #include #endif #ifdef USE_DEVPOLL #include #endif #ifdef USE_KQUEUE #include #endif #if defined(USE_POLL) || defined(USE_SIGIO) #include #endif #ifdef HAVE_SYS_ERRNO_H #include #endif #ifdef HAVE_ERRNO_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_STDLIB_H #include #endif #ifdef HAVE_STRINGS_H #include #endif #ifdef HAVE_STRING_H #include #endif #ifdef HAVE_LIMITS_H #include #endif #ifdef HAVE_STDDEF_H #include #endif #ifdef HAVE_SYS_SIGNAL_H #include #endif #ifdef HAVE_SIGNAL_H #include #endif #ifdef HAVE_INTTYPES_H #include #else #ifndef HAVE_UINTPTR_T typedef unsigned long uintptr_t; #endif #endif #if defined(HAVE_SHL_LOAD) #include #endif #include #ifdef HAVE_MACH_O_DYLD_H #include #endif #ifdef PROXYMON_MODULE #include #include #include #endif #ifdef HAVE_MMAN #include #endif #ifdef HAVE_ENCRYPTION_ON #include #include #include #include #include #include #include #include #endif #include "../lib/zlib/zlib.h" #endif