mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Missing #include updates for dirstream code move from unix to posix.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2012-08-08 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/readdir64_r.c: Update #include for
|
||||||
|
sysdeps/unix -> sysdeps/posix move.
|
||||||
|
* sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
|
||||||
|
|
||||||
2012-08-07 Allan McRae <allan@archlinux.org>
|
2012-08-07 Allan McRae <allan@archlinux.org>
|
||||||
|
|
||||||
[BZ #14303]
|
[BZ #14303]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2000, 2004, 2010 Free Software Foundation, Inc.
|
/* Copyright (C) 2000-2012 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -20,7 +20,7 @@
|
|||||||
#define DIRENT_TYPE struct dirent64
|
#define DIRENT_TYPE struct dirent64
|
||||||
#define GETDENTS_64BIT_ALIGNED 1
|
#define GETDENTS_64BIT_ALIGNED 1
|
||||||
|
|
||||||
#include <sysdeps/unix/readdir_r.c>
|
#include <sysdeps/posix/readdir_r.c>
|
||||||
|
|
||||||
#undef __READDIR_R
|
#undef __READDIR_R
|
||||||
#undef __GETDENTS
|
#undef __GETDENTS
|
||||||
@ -38,7 +38,7 @@ versioned_symbol (libc, __readdir64_r, readdir64_r, GLIBC_2_2);
|
|||||||
#define __GETDENTS __old_getdents64
|
#define __GETDENTS __old_getdents64
|
||||||
#define DIRENT_TYPE struct __old_dirent64
|
#define DIRENT_TYPE struct __old_dirent64
|
||||||
|
|
||||||
#include <sysdeps/unix/readdir_r.c>
|
#include <sysdeps/posix/readdir_r.c>
|
||||||
|
|
||||||
compat_symbol (libc, __old_readdir64_r, readdir64_r, GLIBC_2_1);
|
compat_symbol (libc, __old_readdir64_r, readdir64_r, GLIBC_2_1);
|
||||||
#endif
|
#endif
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
#define __GETDENTS __getdents64
|
#define __GETDENTS __getdents64
|
||||||
#define DIRENT_TYPE struct dirent64
|
#define DIRENT_TYPE struct dirent64
|
||||||
|
|
||||||
#include <sysdeps/unix/readdir_r.c>
|
#include <sysdeps/posix/readdir_r.c>
|
||||||
|
|
||||||
weak_alias (__readdir64_r, readdir64_r)
|
weak_alias (__readdir64_r, readdir64_r)
|
||||||
|
Reference in New Issue
Block a user