xref: /freebsd/contrib/sendmail/include/sm/fdset.h (revision ee2ea5ceafed78a5bd9810beb9e3ca927180c226)
1 /*
2  * Copyright (c) 2001 Sendmail, Inc. and its suppliers.
3  *      All rights reserved.
4  *
5  * By using this file, you agree to the terms and conditions set
6  * forth in the LICENSE file which can be found at the top level of
7  * the sendmail distribution.
8  *
9  *	$Id: fdset.h,v 1.1.1.1 2002/02/17 21:56:43 gshapiro Exp $
10  */
11 
12 #ifndef	SM_FDSET_H
13 # define SM_FDSET_H
14 
15 #  define SM_FD_SET(fd, pfdset)		FD_SET(fd, pfdset)
16 #  define SM_FD_ISSET(fd, pfdset)	FD_ISSET(fd, pfdset)
17 #  define SM_FD_SETSIZE	FD_SETSIZE
18 
19 #endif /* SM_FDSET_H */
20