Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
fdopendir.c
blob: 4fc3138831e419057c7374d4422b92de06549c0d [
file
] [
log
] [
blame
] [
edit
]
/*
* fdopendir.c
*/
#include
<dirent.h>
#include
<stdio.h>
#include
<errno.h>
DIR
*
fdopendir
(
int
__fd
)
{
(
void
)
__fd
;
errno
=
ENOSYS
;
return
NULL
;
}