diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-02-01 07:28:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-02-01 07:28:23 +0000 |
commit | 70dc5068f8105942b3ffa7ef57fbb88b6d4ce75a (patch) | |
tree | a6cb3eb1434c037b2705514a4bbac0da953d9bfc /misc/sys | |
parent | f798bf32a2b076fe51898ab623d8dcab850d3dd1 (diff) | |
download | glibc-70dc5068f8105942b3ffa7ef57fbb88b6d4ce75a.zip glibc-70dc5068f8105942b3ffa7ef57fbb88b6d4ce75a.tar.gz glibc-70dc5068f8105942b3ffa7ef57fbb88b6d4ce75a.tar.bz2 |
Update.
* posix/fnmatch_loop.c: Remove incorrect reverse condition in
[. .] matching. Patch by Isamu Hasegawa <isamu@yamato.ibm.com>.
2001-01-31 Mark Kettenis <kettenis@gnu.org>
* misc/sys/select.h: Include <bits/time.h> instead of <sys/time.h>
to get definition of `struct timeval'.
2001-01-31 Ulrich Drepper <drepper@redhat.com>
Diffstat (limited to 'misc/sys')
-rw-r--r-- | misc/sys/select.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/sys/select.h b/misc/sys/select.h index 3316361..96af958 100644 --- a/misc/sys/select.h +++ b/misc/sys/select.h @@ -42,7 +42,7 @@ typedef __sigset_t sigset_t; #define __need_timespec #include <time.h> #define __need_timeval -#include <sys/time.h> +#include <bits/time.h> /* The fd_set member is required to be an array of longs. */ |