zig
Code
Branches
Tags
Commits
master
zig
/
lib
/
libc
/
musl
/
src
/
dirent
/
dirfd.c
Top
1
#
include
<dirent.h>
2
#
include
"__dirent.h"
3
4
int
dirfd
(
DIR
*
d
)
5
{
6
return
d
-
>
fd
;
7
}