From 726a5b3be128911d2f38f73a6a8c9be6dde9bb3a Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 27 Oct 1999 18:00:50 +1000 Subject: [PATCH] Added compatibility macros --- includes.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/includes.h b/includes.h index 862dbd64f..8fa174bd6 100644 --- a/includes.h +++ b/includes.h @@ -75,4 +75,10 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } client program. Socketpairs do not seem to work on all systems. */ #define USE_PIPES 1 +#ifndef SHUT_RD +#define SHUT_RD 0 +#define SHUT_WR 1 +#define SHUT_RDWR 2 +#endif /* SHUT_RD */ + #endif /* INCLUDES_H */