From: Roland McGrath Date: Wed, 13 May 2015 19:39:01 +0000 (-0700) Subject: Nit fixes in last change. X-Git-Tag: glibc-2.22~331 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=953416737a805a67c18d254c39f5086bde590f6e;p=thirdparty%2Fglibc.git Nit fixes in last change. --- diff --git a/ChangeLog b/ChangeLog index 6ecfde29c38..08a1beca938 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,9 @@ 2015-05-13 Roland McGrath + * dirent/scandir-tail.c: New file. * dirent/scandir64-tail.c: New file. * dirent/Makefile (routines): Add them. + (CFLAGS-scandir-tail.c, CFLAGS-scandir64-tail.c): New variables. * include/dirent.h (__scandir_tail, __scandir64_tail): Declare them. * dirent/scandir.c [!SCANDIR] (SCANDIRAT): Macro removed. [!SCANDIR] (SCANDIR_TAIL): New macro. diff --git a/dirent/Makefile b/dirent/Makefile index 551372ebbab..5d02a9c07b0 100644 --- a/dirent/Makefile +++ b/dirent/Makefile @@ -35,6 +35,8 @@ tests := list tst-seekdir opendir-tst1 bug-readdir1 tst-fdopendir \ CFLAGS-scandir.c = $(uses-callbacks) CFLAGS-scandir64.c = $(uses-callbacks) +CFLAGS-scandir-tail.c = $(uses-callbacks) +CFLAGS-scandir64-tail.c = $(uses-callbacks) include ../Rules