DRC | 2ff39b8 | 2011-07-28 08:38:59 +0000 | [diff] [blame] | 1 | |
2 | #include <dirent.h> | ||||
3 | |||||
4 | int func (const char *d, dirent ***list, void *sort) { | ||||
5 | int n = scandir(d, list, 0, (int(*)(const dirent **, const dirent **))sort); | ||||
6 | } | ||||
7 | |||||
8 | int main() { | ||||
9 | return 0; | ||||
10 | } |