]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 20 Mar 1998 07:27:17 +0000 (07:27 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 20 Mar 1998 07:27:17 +0000 (07:27 +0000)
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.

ChangeLog
dirent/dirent.h
dirent/scandir.c
posix/Makefile

index 09a58877c40d79ee71e2a5f2e54b7d93f04c227f..5e4c63a30469270d274d48c974ad6d37c23f2bd9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+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-19 14:28  Ulrich Drepper  <drepper@cygnus.com>
 
        * sysdeps/generic/strtok_r.c: Make __strtok_r real name and strtok_r
        * posix/wordexp.c (parse_param): Don't immediately stop parsing a
        parameter name after seeing a digit if it's enclosed in braces.
 
+1998-03-18  Ulrich Drepper  <drepper@cygnus.com>
+
+       * sysdeps/i386/i686/Implies: Add libm-i387/i686.
+
 1998-03-18  Andreas Jaeger  <aj@arthur.rhein-neckar.de>
 
        * manual/memory.texi (Heap Consistency Checking): Document
index 01c44a29715de079ef4513f66ce398d16883ce81..63986bfc0fc7275d28c8ca6284fb56f2c49e2b88 100644 (file)
@@ -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))));
 
index 58a2c7519dcac0cb64aa5db0f05e82b57bfad1da..ef7531fa955300811e0ab0809986cad30f4f52f6 100644 (file)
@@ -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);
index 7b00d484355b915765974f75fb1ca2ad85e2a791..525df3cf8660dfef9c9f24697aaefb249263f125 100644 (file)
@@ -64,7 +64,7 @@ before-compile        := testcases.h
 include ../Rules
 
 ifeq (no,$(cross-compiling))
-.PHONY: do-globtest do-wordexp-tst
+.PHONY: do-globtest do-wordexp-test
 tests: do-globtest do-wordexp-test
 do-globtest: $(objpfx)globtest
        $(SHELL) -e globtest.sh $(common-objpfx) $(elf-objpfx) \