aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/eopen.h
blob: 024381a8fc40bf5349079bfac6ca75181782d66d (plain) (blame)
1
2
3
4
5
6
7
/* See LICENSE file for copyright and license details. */
#include <fcntl.h>

#define eopen(...)  enopen(1, __VA_ARGS__)
#define enopen(...) xenopen(__VA_ARGS__, 0)

int xenopen(int status, const char *path, int flags, int mode, ...);