summaryrefslogtreecommitdiff
path: root/com32/lib/fdopendir.c
blob: 5fe116170cb38e50bc122e6cac6bb84082af6cdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * fdopendir.c
 */

#include <dirent.h>
#include <stdio.h>
#include <errno.h>

DIR *fdopendir(int __fd)
{
    errno = ENOSYS;
    return NULL;
}