diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-20 07:27:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-20 07:27:17 +0000 |
commit | 9c1a1da9866c22c1626f2222cf5d03ef1b0ede3b (patch) | |
tree | 80b6809658be22c23971db93ab17f1beddaec4ca /dirent | |
parent | 838e5ffe9e0071859b635151729192dedbf104a7 (diff) | |
download | glibc-9c1a1da9866c22c1626f2222cf5d03ef1b0ede3b.tar.gz glibc-9c1a1da9866c22c1626f2222cf5d03ef1b0ede3b.tar.xz glibc-9c1a1da9866c22c1626f2222cf5d03ef1b0ede3b.zip |
Update.
1998-03-20 12:14 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * posix/Makefile: Fix typo in last change. 1998-03-20 Ulrich Drepper <drepper@cygnus.com> * dirent/dirent.h (scandir): Make argument of select function const. * dirent/scandir.c (scandir): Likewise. Reported by David.Faure@insa-lyon.fr [PR libc/512]. 1998-03-18 Ulrich Drepper <drepper@cygnus.com> * sysdeps/i386/i686/Implies: Add libm-i387/i686.
Diffstat (limited to 'dirent')
-rw-r--r-- | dirent/dirent.h | 4 | ||||
-rw-r--r-- | dirent/scandir.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dirent/dirent.h b/dirent/dirent.h index 01c44a2971..63986bfc0f 100644 --- a/dirent/dirent.h +++ b/dirent/dirent.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,94,95,96,97,98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -201,7 +201,7 @@ extern int dirfd __P ((DIR *__dirp)); *NAMELIST. Returns the number of entries selected, or -1 on error. */ extern int scandir __P ((__const char *__dir, struct dirent ***__namelist, - int (*__selector) __P ((struct dirent *)), + int (*__selector) __P ((__const struct dirent *)), int (*__cmp) __P ((__const __ptr_t, __const __ptr_t)))); diff --git a/dirent/scandir.c b/dirent/scandir.c index 58a2c7519d..ef7531fa95 100644 --- a/dirent/scandir.c +++ b/dirent/scandir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 93, 94, 95, 96, 97 Free Software Foundation, Inc. +/* Copyright (C) 1992, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -25,7 +25,7 @@ int scandir (dir, namelist, select, cmp) const char *dir; struct dirent ***namelist; - int (*select) __P ((struct dirent *)); + int (*select) __P ((const struct dirent *)); int (*cmp) __P ((const void *, const void *)); { DIR *dp = opendir (dir); |