diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-11-04 09:18:22 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-11-04 09:18:22 +0000 |
commit | 8e96ae1a08f419829221ab7e31291606754f0a69 (patch) | |
tree | debc115345fc77bd7938fe58480861fb3fa2533a /manual | |
parent | 80f6f981b9801b2164c472c3d6be57d96be50219 (diff) | |
download | glibc-8e96ae1a08f419829221ab7e31291606754f0a69.tar.gz glibc-8e96ae1a08f419829221ab7e31291606754f0a69.tar.xz glibc-8e96ae1a08f419829221ab7e31291606754f0a69.zip |
Update.
2002-11-04 Ulrich Drepper <drepper@redhat.com> * manual/examples/dir.c: Don't include <stddef.h>. * manual/examples/select.c: Include <errno.h> for TEMP_FAILURE_RETRY. Reported by Frédéric Delanoy <delanoy_f@yahoo.com>. 2002-11-02 H.J. Lu <hjl@gnu.org> * stdio-common/reg-printf.c: Include <stddef.h>.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/examples/dir.c | 1 | ||||
-rw-r--r-- | manual/examples/select.c | 3 | ||||
-rw-r--r-- | manual/llio.texi | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/manual/examples/dir.c b/manual/examples/dir.c index 59ec62c84c..8ab77dc34c 100644 --- a/manual/examples/dir.c +++ b/manual/examples/dir.c @@ -1,5 +1,4 @@ /*@group*/ -#include <stddef.h> #include <stdio.h> #include <sys/types.h> #include <dirent.h> diff --git a/manual/examples/select.c b/manual/examples/select.c index def2cd6f9f..a65ed77503 100644 --- a/manual/examples/select.c +++ b/manual/examples/select.c @@ -1,4 +1,5 @@ /*@group*/ +#include <errno.h> #include <stdio.h> #include <unistd.h> #include <sys/types.h> @@ -6,7 +7,7 @@ /*@end group*/ /*@group*/ -int +int input_timeout (int filedes, unsigned int seconds) { fd_set set; diff --git a/manual/llio.texi b/manual/llio.texi index e9bf1d0d60..e9b5573ddd 100644 --- a/manual/llio.texi +++ b/manual/llio.texi @@ -2829,7 +2829,7 @@ int set_cloexec_flag (int desc, int value) @{ int oldflags = fcntl (desc, F_GETFD, 0); - /* @r{If reading the flags failed, return error indication now.} + /* @r{If reading the flags failed, return error indication now.} */ if (oldflags < 0) return oldflags; /* @r{Set just the flag we want to set.} */ |