summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnantha Kesari H Y <hyanantha@php.net>2005-07-28 09:41:34 +0000
committerAnantha Kesari H Y <hyanantha@php.net>2005-07-28 09:41:34 +0000
commit83b5eb54c4b8d868f94a7473ffeca96e7877793b (patch)
tree8ded8d1d27aacb6cf992cf741ff4a62e096cc14c
parente78ea8251aae83920cce308595cc8957bb38a910 (diff)
downloadphp-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.c3
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) \