/********************************************************************** * PTlink IRC Services is (C) CopyRight PTlink IRC Software 1999-2005 * * http://software.pt-link.net * * This program is distributed under GNU Public License * * Please read the file COPYING for copyright information. * ********************************************************************** Description: standard includes * $Id: stdinc.h,v 1.1.1.1 2005/08/27 15:45:10 jpinto Exp $ */ #define _GNU_SOURCE #ifndef _STDINC_H_ #define _STDINC_H_ #include "setup.h" #ifdef HAVE_STDLIB_H #include #endif #ifdef STRING_WITH_STRINGS # include # include #else # ifdef HAVE_STRING_H # include # else # ifdef HAVE_STRINGS_H # include # endif # endif #endif #ifdef HAVE_STDDEF_H #include #endif #include #include #include #include #include #include #include #include #ifdef USE_GETTEXT #include #endif #include #include #ifdef VMS #define _XOPEN_SOURCE 1 #endif #include #ifdef HAVE_UNISTD_H #include #endif #include #include #include #ifdef HAVE_SYS_RESOURCE_H #include #endif #include #include #include #ifdef HAVE_SYS_PARAM_H #include #endif #include #include #ifdef HAVE_ERRNO_H #include #else extern int errno; #endif #ifdef VMS #include #endif #ifdef HAVE_TERMIOS_H #include #endif #endif