Revision 1932,
590 bytes
checked in by srz, 36 years ago
(diff) |
Added standard copyright notice.
|
Line | |
---|
1 | /* |
---|
2 | * |
---|
3 | * Copyright (C) 1988, 1989 by the Massachusetts Institute of Technology |
---|
4 | * Developed by the MIT Student Information Processing Board (SIPB). |
---|
5 | * For copying information, see the file mit-copyright.h in this release. |
---|
6 | * |
---|
7 | */ |
---|
8 | /* |
---|
9 | * |
---|
10 | * atom.h -- Include file for external atomic file declarations, such |
---|
11 | * as what an afile is. |
---|
12 | * |
---|
13 | */ |
---|
14 | typedef struct { |
---|
15 | int desc; /* UNIX file descriptor */ |
---|
16 | char *dir_list; /* list of blocks */ |
---|
17 | int dirty_blks; /* number of dirty blocks */ |
---|
18 | int file_size; /* original size of file */ |
---|
19 | } *afile; |
---|
20 | |
---|
21 | afile aopen(); |
---|
Note: See
TracBrowser
for help on using the repository browser.