diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-07-16 15:34:26 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-07-16 15:34:26 +0000 |
commit | 2d70b1e637d8fc4dc25f58006ed6f6770ea4bbdd (patch) | |
tree | f0f3b2c3d66a536cc21e694cae7e7289cbaac60a /libpipe/pipe.h | |
parent | 4b03e6b9b56f1d63747e03a3577c00ba61e7b9c1 (diff) |
(EWOULDBLOCK): Define to work around new libc bug.
Diffstat (limited to 'libpipe/pipe.h')
-rw-r--r-- | libpipe/pipe.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libpipe/pipe.h b/libpipe/pipe.h index 677e0356..cc765dc6 100644 --- a/libpipe/pipe.h +++ b/libpipe/pipe.h @@ -1,6 +1,6 @@ /* Generic one-way pipes - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -21,6 +21,8 @@ #ifndef __PIPE_H__ #define __PIPE_H__ +#define EWOULDBLOCK EAGAIN /* XXX */ + #include <cthreads.h> /* For conditions & mutexes */ #include "pq.h" |