140266059SGregory Neil Shapiro /* 240266059SGregory Neil Shapiro * Copyright (c) 2001 Sendmail, Inc. and its suppliers. 340266059SGregory Neil Shapiro * All rights reserved. 440266059SGregory Neil Shapiro * 540266059SGregory Neil Shapiro * By using this file, you agree to the terms and conditions set 640266059SGregory Neil Shapiro * forth in the LICENSE file which can be found at the top level of 740266059SGregory Neil Shapiro * the sendmail distribution. 840266059SGregory Neil Shapiro * 940266059SGregory Neil Shapiro * $Id: fdset.h,v 1.3 2001/03/30 23:45:31 geir Exp $ 1040266059SGregory Neil Shapiro */ 1140266059SGregory Neil Shapiro 1240266059SGregory Neil Shapiro #ifndef SM_FDSET_H 1340266059SGregory Neil Shapiro # define SM_FDSET_H 1440266059SGregory Neil Shapiro 1540266059SGregory Neil Shapiro # define SM_FD_SET(fd, pfdset) FD_SET(fd, pfdset) 1640266059SGregory Neil Shapiro # define SM_FD_ISSET(fd, pfdset) FD_ISSET(fd, pfdset) 1740266059SGregory Neil Shapiro # define SM_FD_SETSIZE FD_SETSIZE 1840266059SGregory Neil Shapiro 1940266059SGregory Neil Shapiro #endif /* SM_FDSET_H */ 20