1 /************************************************************************
2  *   IRC - Internet Relay Chat, ircd/sys_def.h
3  *   Copyright (C) 1990 University of Oulu, Computing Center
4  *
5  *   This program is free software; you can redistribute it and/or modify
6  *   it under the terms of the GNU General Public License as published by
7  *   the Free Software Foundation; either version 1, or (at your option)
8  *   any later version.
9  *
10  *   This program is distributed in the hope that it will be useful,
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *   GNU General Public License for more details.
14  *
15  *   You should have received a copy of the GNU General Public License
16  *   along with this program; if not, write to the Free Software
17  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 
20 /*   $Id: sys_def.h,v 1.3 2001/10/20 17:57:30 q Exp $   */
21 
22 #if defined(DEBUGMODE) && !defined(CLIENT_COMPILE) && \
23     !defined(CHKCONF_COMPILE) && defined(DO_DEBUG_MALLOC)
24 # define	free(x)		MyFree(x)
25 #else
26 # define	MyFree(x)	do { if ((x) != NULL) free(x); (x) = NULL; } while(0)
27 #endif
28 
29 #define	SETSOCKOPT(fd, o1, o2, p1, o3)	setsockopt(fd, o1, o2, (char *)p1,\
30 						   (SOCK_LEN_TYPE) sizeof(o3))
31 
32 #define	GETSOCKOPT(fd, o1, o2, p1, p2)	getsockopt(fd, o1, o2, (char *)p1,\
33 						   (SOCK_LEN_TYPE *)p2)
34