Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_external_tigervnc
/
8a2b0810dc4a5ad2adc921b6b74a2d6dbdcc6f28
/
.
/
common
/
fltk
/
CMake
/
posixScandir.cxx
blob: ea57e9ce2aa5333251ef3d7ba33624c69adc9adb [
file
] [
log
] [
blame
]
#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
;
}