#sccs "@(#)uts/kern/sys:dir.h 1.1" /* Convergent Technologies - System V - May 1983 */ #ifndef dir_h #define dir_h #include #ifndef DIRSIZ #define DIRSIZ 14 #endif struct direct { ino_t d_ino; char d_name[DIRSIZ]; }; #endif