blob: a6ef9ec4d1a3b01d9bbe5154096428cb1f91d784 (
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_write(const char *);
extern int open_lock(const char *);
extern int open_cwd(void);
extern int open_pipe(int *);
#endif
|