summaryrefslogtreecommitdiff
path: root/open.h
blob: 9939663b76febf99ef8674f03a47a82d11974ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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