2 * ircd-ratbox: A slightly useful ircd.
3 * stdinc.h: Pull in all of the necessary system headers
5 * Copyright (C) 2002 Aaron Sethman <androsyn@ratbox.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * $Id: stdinc.h 21132 2005-11-08 21:04:24Z androsyn $
27 #include "config.h" /* Gotta pull in the autoconf stuff */
29 /* AIX requires this to be the first thing in the file. */
32 #define alloca __builtin_alloca
36 # define alloca _alloca
44 # ifndef alloca /* predefined by HP cc +Olibcalls */
56 #ifdef STRING_WITH_STRINGS
63 # ifdef HAVE_STRINGS_H
94 #include <sys/types.h>
96 #ifdef HAVE_SYS_RESOURCE_H
97 #include <sys/resource.h>
101 #include <sys/socket.h>
102 #include <sys/stat.h>
103 #include <sys/wait.h>
105 #ifdef HAVE_SYS_PARAM_H
106 #include <sys/param.h>
108 #include <netinet/in.h>
109 #include <netinet/tcp.h>
110 #include <arpa/inet.h>
118 #ifdef HAVE_SYS_UIO_H
122 #if defined(__INTEL_COMPILER) || defined(__GNUC__)
133 # define __unused __attribute__((__unused__))
134 # define __printf(x) __attribute__((__format__ (__printf__, x, x + 1)))
135 # define __noreturn __attribute__((__noreturn__))
145 #define LOCAL_COPY(s) strdupa(s)
147 #if defined(__INTEL_COMPILER) || defined(__GNUC__)
148 # define LOCAL_COPY(s) __extension__({ char *_s = alloca(strlen(s) + 1); strcpy(_s, s); _s; })
150 # define LOCAL_COPY(s) strcpy(alloca(strlen(s) + 1), s) /* XXX Is that allowed? */
151 #endif /* defined(__INTEL_COMPILER) || defined(__GNUC__) */