77f3a9073f
[andersk@mit.edu: Move code to new third/libstddjb directory]
12 lines
211 B
C
12 lines
211 B
C
/* ISC license. */
|
|
|
|
#include <fcntl.h>
|
|
#include "djbunix.h"
|
|
|
|
int coe (int fd)
|
|
{
|
|
register int flags = fcntl(fd, F_GETFD, 0) ;
|
|
if (flags < 0) return -1 ;
|
|
return fcntl(fd, F_SETFD, flags | FD_CLOEXEC) ;
|
|
}
|