mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
18 lines
357 B
C
18 lines
357 B
C
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include "open.h"
|
|
|
|
int open_write(const char *fn)
|
|
{
|
|
#ifdef O_CLOEXEC
|
|
return open(fn,O_CREAT | O_WRONLY | O_NONBLOCK | O_CLOEXEC,0644);
|
|
#else
|
|
int fd = open(fn,O_CREAT | O_WRONLY | O_NONBLOCK,0644);
|
|
if (fd == -1) return -1;
|
|
fcntl(fd,F_SETFD,1);
|
|
return fd;
|
|
#endif
|
|
}
|