etc/services - sync with NetBSD-8
[minix.git] / minix / lib / libsffs / const.h
blob1064f13e72f462e28096a8cd3f70fe04c2d810a6
1 #ifndef _SFFS_CONST_H
2 #define _SFFS_CONST_H
4 /* Number of inodes. */
5 /* The following number must not exceed 16. The i_num field is only a short. */
6 #define NUM_INODE_BITS 8
8 /* Number of entries in the name hashtable. */
9 #define NUM_HASH_SLOTS 1023
11 /* Arbitrary block size constant returned by statvfs. Also used by getdents.
12 * This is not the underlying data transfer unit size.
14 #define BLOCK_SIZE 4096
16 #endif /* _SFFS_CONST_H */