rustit/mirror_runit/runit-2.1.2/src/open.h

13 lines
245 B
C
Raw Normal View History

2024-03-25 00:51:57 +01:00
/* 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