a0d26b634a
than what we had previously, but may need some more testing. The latest changes (removing old APPLE_QD definitions and code) might need another update. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7451 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
11 lines
186 B
C++
11 lines
186 B
C++
|
|
#include <dirent.h>
|
|
|
|
int func (const char *d, dirent ***list, void *sort) {
|
|
int n = scandir(d, list, 0, (int(*)(const dirent **, const dirent **))sort);
|
|
}
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|