xref: /openbsd-src/lib/libc/gen/dirfd.c (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
1 /*
2  * Written by Matthew Dempsky, 2011.
3  * Public domain.
4  */
5 
6 #include <dirent.h>
7 #include "telldir.h"
8 
9 int
10 dirfd(DIR *dirp)
11 {
12 	return (dirp->dd_fd);
13 }
14 DEF_WEAK(dirfd);
15