aboutsummaryrefslogtreecommitdiff
path: root/open.h
blob: 1fcd99f1417467e83709954bb27a264dd1e50325 (plain)
1
2
3
4
5
6
7
8
9
10
#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