From 8bdc62b0890760ebe6ddd70f2841b5136fbf7cb0 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 19 Mar 2001 22:49:36 +0000 Subject: Move the dirent stuff. I suppose it is system dependant, but then it really should be grouped together too. And it needed to be grouped more then it needed to be in sysdeps/linux/common --- libc/misc/dirent/dirfd.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 libc/misc/dirent/dirfd.c (limited to 'libc/misc/dirent/dirfd.c') diff --git a/libc/misc/dirent/dirfd.c b/libc/misc/dirent/dirfd.c new file mode 100644 index 000000000..d401dccd2 --- /dev/null +++ b/libc/misc/dirent/dirfd.c @@ -0,0 +1,12 @@ +#include +#include "dirstream.h" + +int dirfd(DIR * dir) +{ + if (!dir || dir->dd_fd == -1) { + errno = EBADF; + return -1; + } + + return dir->dd_fd; +} -- cgit v1.2.3