|
|
1.1 root 1: /* (-lgl
2: * COHERENT Version 3.0
3: * Copyright (c) 1982, 1990 by Mark Williams Company.
4: * All rights reserved. May not be copied without permission.
5: -lgl) */
6: /*
7: * Directory entry.
8: */
9:
10: #ifndef DIR_H
11: #define DIR_H DIR_H
12:
13: #include <sys/types.h>
14:
15: #define DIRSIZ 14 /* Size of directory name */
16: #define DIR char * /* Directory type */
17:
18: /*
19: * Directory entry structure.
20: */
21: struct direct {
22: ino_t d_ino; /* Inode number */
23: char d_name[DIRSIZ]; /* Name */
24: };
25:
26: #endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.