#ifndef FD_UTIL_H
#define FD_UTIL_H
/* Change close-on-exec flag of fd. */
/* Verify that fds in given range don't exist. */
/* Set file descriptor to blocking/nonblocking state */
/* Close fd_in and fd_out, unless they're already -1. They can point to the
same fd, in which case they're closed only once. If they point to stdin
/* Close the fd and set it to -1. This assert-crashes if fd == 0, and is a
no-op if fd == -1. Normally fd == 0 would happen only if an uninitialized
fd is attempted to be closed, which is a bug. */
#endif