dir.h 474 B

123456789101112131415161718192021
  1. /* Copyright (c) 1984 AT&T */
  2. /* All Rights Reserved */
  3. /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
  4. /* The copyright notice above does not evidence any */
  5. /* actual or intended publication of such source code. */
  6. #ifndef _rhSYS_FS_DNIX_DIR
  7. #define _rhSYS_FS_DNIX_DIR
  8. #ident "@(#)kern-port:sys/fs/dnix/dir.h 10.1"
  9. #ifndef DIRSIZ
  10. #define DIRSIZ 14
  11. #endif
  12. struct direct
  13. {
  14. unsigned short d_ino;
  15. char d_name[DIRSIZ];
  16. };
  17. #endif /* _rhSYS_FS_DNIX_DIR */