diff options
author | Roland McGrath <roland@gnu.org> | 1995-09-21 04:01:40 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-09-21 04:01:40 +0000 |
commit | 600927014b78e4247e36bbc554c188c7a3cca40e (patch) | |
tree | cf802f95fda74fadebc8683ac1b584b527f9fbaa /dirent/scandir.c | |
parent | bf40c56f1a3f569780b99c8187aaa3f580de36d4 (diff) | |
download | glibc-600927014b78e4247e36bbc554c188c7a3cca40e.zip glibc-600927014b78e4247e36bbc554c188c7a3cca40e.tar.gz glibc-600927014b78e4247e36bbc554c188c7a3cca40e.tar.bz2 |
Wed Sep 20 18:02:03 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* locale/locale.c: Include errno.h.
* locale/localedef.c: Likewise.
Tue Sep 19 00:02:06 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* Makefile (distclean-1): Remove config.cache, config.log, config.h.
(parent-mostlyclean): Remove all flavors of the parent library.
* misc/mntent.c (getmntent): Skip multiple whitespace chars
between fields.
* hurd/hurdstartup.c (_hurd_startup): If RPC returns
EXEC_STACK_ARGS flag, get args from stack.
If args on stack but have info from RPC, relocate args on stack to make
space for struct hurd_startup_data.
* elf/dl-object.c: Include errno.h.
* posix/execvp.c: Likewise.
* dirent/scandir.c: Likewise.
* sysdeps/posix/system.c: Likewise.
* sysdeps/generic/setenv.c: Likewise.
* stdlib/msort.c: Likewise.
* stdio/memstream.c: Likewise.
* stdio/fclose.c: Likewise.
* stdio/getdelim.c: Likewise.
* stdio/setvbuf.c: Likewise.
* sysdeps/ieee754/ldexp.c: Likewise.
* locale/locfile-parse.c: Likewise.
* stdlib/lcong48_r.c: Don't check for null argument; let it fault.
* stdlib/seed48_r.c: Likewise.
* stdlib/srand48_r.c: Likewise.
* stdlib/jrand48_r.c: Likewise.
* stdlib/nrand48_r.c: Likewise.
* misc/search.h: Many decls for hsearch functions.
Diffstat (limited to 'dirent/scandir.c')
-rw-r--r-- | dirent/scandir.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dirent/scandir.c b/dirent/scandir.c index 6794ead..65267af 100644 --- a/dirent/scandir.c +++ b/dirent/scandir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1993, 1994, 1995 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 @@ -19,6 +19,7 @@ Cambridge, MA 02139, USA. */ #include <ansidecl.h> #include <dirent.h> #include <stdlib.h> +#include <errno.h> int DEFUN(scandir, (dir, namelist, select, cmp), |