Research V4 development
[unix-history] / sys / file.h
CommitLineData
506a359f
KT
1struct file {
2 char f_flag;
3 char f_count;
4 int f_inode;
5 char *f_offset[2];
6} file[NFILE];
7
8/* flags */
9#define FREAD 01
10#define FWRITE 02