Sign in
apache
/
infrastructure-ezmlm-idx
/
refs/heads/avoid-duplicate-headers
/
.
/
open_write.c
blob: f95ba0014987d82c65cba3411b1d3fff8eea732f [
file
]
/* Public domain, from daemontools-0.76. */
#include
<sys/types.h>
#include
<fcntl.h>
#include
"open.h"
int
open_write
(
const
char
*
fn
)
{
return
open
(
fn
,
O_WRONLY
|
O_NDELAY
);
}