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