repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 6.00+dfgs.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
fdopendir.c
blob
4fc3138831e419057c7374d4422b92de06549c0d
1
/*
2
* fdopendir.c
3
*/
4
5
#include <dirent.h>
6
#include <stdio.h>
7
#include <errno.h>
8
9
DIR
*
fdopendir
(
int
__fd
)
10
{
11
(
void
)
__fd
;
12
13
errno
=
ENOSYS
;
14
return
NULL
;
15
}