1eaf87b245
Fix bug in CMake/posixScandir.cxx (backported from 1.4). Fix table structure in test/help-test.html (backported from 1.4). Clarify that the deprecated forms compatibility *may* be removed in FLTK 1.4
12 lines
198 B
C++
12 lines
198 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);
|
|
return n;
|
|
}
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|