2026-01-01 09:32:02 -08:00
|
|
|
/* Copyright (C) 1991-2026 Free Software Foundation, Inc.
|
1996-12-08 08:01:13 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1996-12-08 08:01:13 +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-18 01:27:10 +00:00
|
|
|
|
1996-12-08 08:01:13 +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-18 01:27:10 +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
|
2019-09-06 22:40:42 -07:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
#include <errno.h>
|
1997-10-12 04:05:44 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
#include <dirent.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-10-12 04:05:44 +00:00
|
|
|
/* Read a directory entry from DIRP. */
|
|
|
|
|
struct dirent64 *
|
1998-03-20 12:06:55 +00:00
|
|
|
__readdir64 (DIR *dirp)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
1996-09-27 03:45:24 +00:00
|
|
|
__set_errno (ENOSYS);
|
|
|
|
|
return NULL;
|
1995-02-18 01:27:10 +00:00
|
|
|
}
|
1998-03-20 12:06:55 +00:00
|
|
|
weak_alias (__readdir64, readdir64)
|
1997-10-12 04:05:44 +00:00
|
|
|
stub_warning (readdir64)
|