/* $Revision: 1.1.1.1 $ ** */ #include "configdata.h" #include #include #include #include "clibrary.h" #if defined(CLX_IOCTL) #include /* ** Mark a file close-on-exec so that it doesn't get shared with our ** children. Ignore any error codes. */ void CloseOnExec(fd, flag) int fd; int flag; { int oerrno; oerrno = errno; (void)ioctl(fd, flag ? FIOCLEX : FIONCLEX, (char *)NULL); errno = oerrno; } #endif /* defined(CLX_IOCTL) */ #if defined(CLX_FCNTL) #include /* ** Mark a file close-on-exec so that it doesn't get shared with our ** children. Ignore any error codes. */ void CloseOnExec(fd, flag) int fd; int flag; { int oerrno; oerrno = errno; (void)fcntl(fd, F_SETFD, flag ? 1 : 0); errno = oerrno; } #endif /* defined(CLX_FCNTL) */