/* * ircd-ratbox: A slightly useful ircd. * stdinc.h: Pull in all of the necessary system headers * * Copyright (C) 2002 Aaron Sethman * * 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 of the License, 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * * $Id: stdinc.h 6 2005-09-10 01:02:21Z nenolod $ * */ #include "ratbox_lib.h" #include "config.h" /* Gotta pull in the autoconf stuff */ #include "ircd_defs.h" /* Needed for some reasons here -- dwr */ /* AIX requires this to be the first thing in the file. */ #ifdef __GNUC__ #undef alloca #define alloca __builtin_alloca #else # ifdef _MSC_VER # include # define alloca _alloca # else # if HAVE_ALLOCA_H # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca /* predefined by HP cc +Olibcalls */ char *alloca (); # endif # endif # endif # endif #endif #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 #include #include #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 #include #ifdef HAVE_ERRNO_H #include #else extern int errno; #endif #ifdef HAVE_SYS_UIO_H #include #endif #if defined(__INTEL_COMPILER) || defined(__GNUC__) # ifdef __unused # undef __unused # endif # ifdef __printf # undef __printf # endif # ifdef __noreturn # undef __noreturn # endif # define __unused __attribute__((__unused__)) # define __printf(x) __attribute__((__format__ (__printf__, x, x + 1))) # define __noreturn __attribute__((__noreturn__)) #else # define __unused # define __printf # define __noreturn #endif /* XXX must be removed in future!!! -- dwr */ #ifdef strdupa #define LOCAL_COPY(s) strdupa(s) #else #if defined(__INTEL_COMPILER) || defined(__GNUC__) # define LOCAL_COPY(s) __extension__({ char *_s = alloca(strlen(s) + 1); strcpy(_s, s); _s; }) #else # define LOCAL_COPY(s) strcpy(alloca(strlen(s) + 1), s) /* XXX Is that allowed? */ #endif /* defined(__INTEL_COMPILER) || defined(__GNUC__) */ /* LOCAL_COPY_N copies n part of string and adds one to terminate the string */ #ifdef strndupa #define LOCAL_COPY_N(s, n) strndupa(s, n) #else #if defined(__INTEL_COMPILER) || defined(__GNUC__) #define LOCAL_COPY_N(s, n) __extension__({ size_t _l = strlen(s); _l = n > _l ? _l : n; char *_s = alloca(_l+1); memcpy(_s, s, _l); _s[_l] = '\0' ; _s; }) #else #define LOCAL_COPY_N(s, n) xc_strlcpy(alloca(strlen(s)+1), s, n) INLINE_FUNC size_t xc_strlcpy(char *dest, const char *src, size_t size) { size_t ret = strlen(src); if (size) { size_t len = (ret >= size) ? size-1 : ret; memcpy(dest, src, len); dest[len] = '\0'; } return dest; } #endif /* defined(__INTEL_COMPILER) || defined(__GNUC__) */ #endif /* strndupa */ #endif /* strdupa */