summaryrefslogtreecommitdiff
path: root/lib/libc/gen/dirfd.c
blob: 3188a7cf5a7861877e8e798c26948915bb9ae06c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Written by Matthew Dempsky, 2011.
 * Public domain.
 */

#include <dirent.h>
#include "telldir.h"

int
dirfd(DIR *dirp)
{
	return (dirp->dd_fd);
}