xref: /openbsd-src/lib/libc/gen/dirfd.c (revision f6aab3d83b51b91c24247ad2c2573574de475a82)
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