rustit/mirror_runit/runit-2.1.2/src/open.h
2024-03-24 23:51:57 +00:00

12 lines
245 B
C

/* Public domain. */
#ifndef OPEN_H
#define OPEN_H
extern int open_read(const char *);
extern int open_excl(const char *);
extern int open_append(const char *);
extern int open_trunc(const char *);
extern int open_write(const char *);
#endif