1996-12-20 01:39:50 +00:00
|
|
|
/* Return the file descriptor used by a DIR stream. Unix version.
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 1995-2017 Free Software Foundation, Inc.
|
1996-12-20 01:39:50 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-02-25 01:23:32 +00:00
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1995-02-25 01:23:32 +00:00
|
|
|
|
1996-12-20 01:39:50 +00:00
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1995-02-25 01:23:32 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1995-02-25 01:23:32 +00:00
|
|
|
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <dirstream.h>
|
|
|
|
|
1995-03-06 00:27:08 +00:00
|
|
|
#undef dirfd
|
|
|
|
|
1995-02-25 01:23:32 +00:00
|
|
|
int
|
2017-09-27 21:46:51 +00:00
|
|
|
__dirfd (DIR *dirp)
|
1995-02-25 01:23:32 +00:00
|
|
|
{
|
1996-02-27 00:55:03 +00:00
|
|
|
return dirp->fd;
|
1995-02-25 01:23:32 +00:00
|
|
|
}
|
2017-09-27 21:46:51 +00:00
|
|
|
|
|
|
|
weak_alias (__dirfd, dirfd)
|