diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-16 13:49:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-16 13:49:59 +0000 |
commit | 08a0d60a9bc07a64b50f70160a633be938180595 (patch) | |
tree | 708125be3373f0c9901db0f2aaa0ce647ca97450 /rt/aio_cancel.c | |
parent | 50304ef0572fb41ba853262046dc7594f6a15241 (diff) | |
download | glibc-08a0d60a9bc07a64b50f70160a633be938180595.tar glibc-08a0d60a9bc07a64b50f70160a633be938180595.tar.gz glibc-08a0d60a9bc07a64b50f70160a633be938180595.tar.bz2 glibc-08a0d60a9bc07a64b50f70160a633be938180595.zip |
Update.
1998-07-16 13:44 Ulrich Drepper <drepper@cygnus.com>
* argp/argp-fmtstream.c: Fix warnings introduced in last change.
* assert/assert-perr.c: Likewise.
* assert/assert.c: Likewise.
* gconv_conf.c: Likewise.
* libio/iofputs_u.c: Likewise.
* malloc/mtrace.c: Likewise.
* malloc/obstack.c: Likewise.
* misc/error.c: Likewise.
* misc/syslog.c: Likewise.
* stdio-common/asprintf.c: Likewise.
* stdio-common/dprintf.c: Likewise.
* stdio-common/getw.c: Likewise.
* stdio-common/putw.c: Likewise.
* stdio-common/snprintf.c: Likewise.
* stdio-common/sprintf.c: Likewise.
* stdio-common/sscanf.c: Likewise.
* sunrpc/svc_simple.c: Likewise.
* sysdeps/generic/abort.c: Likewise.
* rt/aio_cancel.c: Don't define ECANCELED here.
* sysdeps/unix/sysv/linux/bits/errno.h: Define ECANCELED correctly.
Diffstat (limited to 'rt/aio_cancel.c')
-rw-r--r-- | rt/aio_cancel.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/rt/aio_cancel.c b/rt/aio_cancel.c index e802a8533f..645ae16d04 100644 --- a/rt/aio_cancel.c +++ b/rt/aio_cancel.c @@ -1,5 +1,5 @@ /* Cancel requests associated with given file descriptor. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -34,9 +34,6 @@ #include "aio_misc.h" -/* Argh, so far there is no ECANCELED. */ -#define ECANCELED 125 - int aio_cancel (fildes, aiocbp) int fildes; |