| 3993 | /* Set up SORTED_FILE to point to the in-use entries in CWD_FILE, in order. */ |
| 3994 | |
| 3995 | static void |
| 3996 | initialize_ordering_vector (void) |
| 3997 | { |
| 3998 | for (idx_t i = 0; i < cwd_n_used; i++) |
| 3999 | sorted_file[i] = &cwd_file[i]; |
| 4000 | } |
| 4001 | |
| 4002 | /* Cache values based on attributes global to all files. */ |
| 4003 |