]> git.ipfire.org Git - thirdparty/glibc.git/blame - dirent/dirfd.c
hurd: Avoid PLT for dirfd
[thirdparty/glibc.git] / dirent / dirfd.c
CommitLineData
b6ab06ce 1/* Return the file descriptor used by a DIR stream. Stub version.
688903eb 2 Copyright (C) 1995-2018 Free Software Foundation, Inc.
478b92f0
UD
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
478b92f0
UD
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
478b92f0 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
28f540f4 18
b6ab06ce
UD
19#include <dirent.h>
20#include <dirstream.h>
28f540f4 21#include <errno.h>
28f540f4 22
b6ab06ce 23int
2c7bbfaf 24__dirfd (DIR *dirp)
28f540f4 25{
c4029823 26 __set_errno (ENOSYS);
b6ab06ce 27 return -1;
28f540f4
RM
28}
29
2c7bbfaf 30weak_alias (__dirfd, dirfd)
b6ab06ce 31stub_warning (dirfd)
c120981d 32libc_hidden_def (dirfd)