123 lines
2.5 KiB
C
123 lines
2.5 KiB
C
/*
|
|
* static char *rcsid_includes_h =
|
|
* "$Id: includes.h 11578 2009-02-23 22:02:27Z lalo $";
|
|
*/
|
|
|
|
/*
|
|
CrossFire, A Multiplayer game for X-windows
|
|
|
|
Copyright (C) 2002 Mark Wedel & Crossfire Development Team
|
|
Copyright (C) 1992 Frank Tore Johansen
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
The authors can be reached via e-mail at crossfire-devel@real-time.com
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* Standard includes.
|
|
*/
|
|
|
|
#ifndef INCLUDES_H
|
|
#define INCLUDES_H
|
|
|
|
#if defined(osf1) && !defined(__osf__)
|
|
# define __osf__
|
|
#endif
|
|
|
|
#if defined(sgi) && !defined(__sgi__)
|
|
# define __sgi__
|
|
#endif
|
|
|
|
#ifdef sun
|
|
# ifndef __sun__
|
|
# define __sun__
|
|
# endif
|
|
#endif
|
|
|
|
#if defined(ultrix) && !defined(__ultrix__)
|
|
# define __ultrix__
|
|
#endif
|
|
|
|
/* Include this first, because it lets us know what we are missing */
|
|
#ifdef WIN32 /* ---win32 exclude this, config comes from VC ide */
|
|
#include "win32.h"
|
|
#else
|
|
#include <autoconf.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
#include <setjmp.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __NetBSD__
|
|
#include <math.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
#include <fcntl.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_LIBDMALLOC
|
|
#include <dmalloc.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
#include <sys/time.h>
|
|
#endif
|
|
|
|
#if defined(HAVE_TIME_H) && defined(TIME_WITH_SYS_TIME)
|
|
#include <time.h>
|
|
#endif
|
|
|
|
/* stddef is for offsetof */
|
|
#ifdef HAVE_STDDEF_H
|
|
#include <stddef.h>
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include "config.h"
|
|
#include "define.h"
|
|
#include "logger.h"
|
|
#include "newclient.h"
|
|
#include "languages.h"
|
|
|
|
#ifndef TRUE
|
|
#define TRUE 1
|
|
#endif
|
|
|
|
#ifndef FALSE
|
|
#define FALSE 0
|
|
#endif
|
|
|
|
#if defined(vax) || defined(ibm032)
|
|
size_t strftime(char *, size_t, const char *, const struct tm *);
|
|
time_t mktime(struct tm *);
|
|
#endif
|
|
|
|
#endif /* INCLUDES_H */
|