diff options
| author | Anantha Kesari H Y <hyanantha@php.net> | 2005-07-28 09:41:34 +0000 |
|---|---|---|
| committer | Anantha Kesari H Y <hyanantha@php.net> | 2005-07-28 09:41:34 +0000 |
| commit | 83b5eb54c4b8d868f94a7473ffeca96e7877793b (patch) | |
| tree | 8ded8d1d27aacb6cf992cf741ff4a62e096cc14c | |
| parent | e78ea8251aae83920cce308595cc8957bb38a910 (diff) | |
| download | php-git-83b5eb54c4b8d868f94a7473ffeca96e7877793b.tar.gz | |
defined EX_OK and EX_TEMPFAIL in ext/standard/mail.c for NETWARE rather than including a sysexits.h.
-Kamesh
| -rw-r--r-- | ext/standard/mail.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/mail.c b/ext/standard/mail.c index 461acc59b0..ab51be2f5d 100644 --- a/ext/standard/mail.c +++ b/ext/standard/mail.c @@ -42,7 +42,8 @@ #endif #ifdef NETWARE -#include "netware/sysexits.h" /* For exit status codes like EX_OK */ +#define EX_OK 0 /* successful termination */ +#define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */ #endif #define SKIP_LONG_HEADER_SEP(str, pos) \ |
