libowfat/io/io_closeonexec.c

11 lines
196 B
C
Raw Normal View History

2003-09-02 00:14:04 +00:00
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include "io_internal.h"
void io_closeonexec(int64 d) {
#ifndef __MINGW32__
2003-09-02 00:14:04 +00:00
fcntl(d,F_SETFL,fcntl(d,F_GETFL,0) | FD_CLOEXEC);
#endif
2003-09-02 00:14:04 +00:00
}