100 lines
2.4 KiB
C
100 lines
2.4 KiB
C
/************************************************************************
|
|
* IRC - Internet Relay Chat, include/sys.h
|
|
* 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 1, 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.
|
|
*/
|
|
|
|
#ifndef __sys_include__
|
|
#define __sys_include__
|
|
#ifdef ISC202
|
|
#include <net/errno.h>
|
|
#else
|
|
#include <sys/errno.h>
|
|
#endif
|
|
|
|
#include "setup.h"
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <sys/param.h>
|
|
|
|
#ifdef UNISTDH
|
|
#include <unistd.h>
|
|
#endif
|
|
#ifdef STDLIBH
|
|
#include <stdlib.h>
|
|
#endif
|
|
|
|
#include <strings.h>
|
|
#include <string.h>
|
|
|
|
#ifdef AIX
|
|
#include <sys/select.h>
|
|
#endif
|
|
#if defined(HPUX )|| defined(AIX)
|
|
#include <time.h>
|
|
#ifdef AIX
|
|
#include <sys/time.h>
|
|
#endif
|
|
#else
|
|
#include <sys/time.h>
|
|
#endif
|
|
|
|
#if !defined(DEBUGMODE)
|
|
#define MyFree(x) if ((x) != NULL) free(x)
|
|
#else
|
|
#define free(x) MyFree(x)
|
|
#endif
|
|
|
|
#ifdef NEXT
|
|
#define VOIDSIG int /* whether signal() returns int of void */
|
|
#else
|
|
#define VOIDSIG void /* whether signal() returns int of void */
|
|
#endif
|
|
|
|
#ifdef SOL20
|
|
#define OPT_TYPE char /* opt type for get/setsockopt */
|
|
#else
|
|
#define OPT_TYPE void
|
|
#endif
|
|
|
|
/* Different name on NetBSD and FreeBSD --Skip */
|
|
#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__bsdi__)
|
|
#define dn_skipname __dn_skipname
|
|
#endif
|
|
|
|
extern VOIDSIG dummy();
|
|
|
|
#ifdef DYNIXPTX
|
|
#define NO_U_TYPES
|
|
typedef unsigned short n_short; /* short as received from the net */
|
|
typedef unsigned long n_long; /* long as received from the net */
|
|
typedef unsigned long n_time; /* ms since 00:00 GMT, byte rev */
|
|
#define _NETINET_IN_SYSTM_INCLUDED
|
|
#endif
|
|
|
|
#ifdef NO_U_TYPES
|
|
typedef unsigned char u_char;
|
|
typedef unsigned short u_short;
|
|
typedef unsigned long u_long;
|
|
typedef unsigned int u_int;
|
|
#endif
|
|
|
|
#ifdef USE_VARARGS
|
|
#include <stdarg.h>
|
|
#endif
|
|
|
|
#endif /* __sys_include__ */
|