| 1730 | } |
| 1731 | |
| 1732 | static int file_compare(const void *file1, const void *file2) |
| 1733 | { |
| 1734 | return f_name_cmp(*(struct file_struct **)file1, |
| 1735 | *(struct file_struct **)file2); |
| 1736 | } |
| 1737 | |
| 1738 | /* The guts of a merge-sort algorithm. This was derived from the glibc |
| 1739 | * version, but I (Wayne) changed the merge code to do less copying and |
nothing calls this directly
no test coverage detected