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.3 2001/03/30 23:45:31 geir 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