summaryrefslogtreecommitdiff
path: root/open.h
diff options
context:
space:
mode:
Diffstat (limited to 'open.h')
-rw-r--r--open.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/open.h b/open.h
new file mode 100644
index 0000000..9939663
--- /dev/null
+++ b/open.h
@@ -0,0 +1,12 @@
1/* Public domain. */
2
3#ifndef OPEN_H
4#define OPEN_H
5
6extern int open_read(const char *);
7extern int open_excl(const char *);
8extern int open_append(const char *);
9extern int open_trunc(const char *);
10extern int open_write(const char *);
11
12#endif