1 #ifndef OPEN_H
2 #define OPEN_H
3 
4 extern int open_read(const char *);
5 extern int open_write(const char *);
6 extern int open_lock(const char *);
7 extern int open_cwd(void);
8 extern int open_pipe(int *);
9 
10 #endif
11