summaryrefslogtreecommitdiff
path: root/e_os.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-03-18 09:09:31 +0000
committerRichard Levitte <levitte@openssl.org>2000-03-18 09:09:31 +0000
commit1f515cfe093ecbad58c786064439604b42c1e659 (patch)
tree83519f5e1938b8c97e72c691df5c1f1802603447 /e_os.h
parentee7f80c580507a86baa9d07cc05af9e09de2bcb2 (diff)
downloadopenssl-new-1f515cfe093ecbad58c786064439604b42c1e659.tar.gz
e_os.h: don't do double work with status codes.
openssl.c: make damn sure e_os.h knows about OPENSSL_C
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/e_os.h b/e_os.h
index 3eff833efb..f5bcceb8ac 100644
--- a/e_os.h
+++ b/e_os.h
@@ -271,13 +271,7 @@ extern "C" {
exit(__VMS_EXIT); \
return(__VMS_EXIT); } while(0)
# else
-# define EXIT(n) do { int __VMS_EXIT = n; \
- if (__VMS_EXIT == 0) \
- __VMS_EXIT = 1; \
- else \
- __VMS_EXIT = (n << 3) | 2; \
- __VMS_EXIT |= 0x10000000; \
- return(__VMS_EXIT); } while(0)
+# define EXIT(n) return(n)
# endif
# define NO_SYS_PARAM_H
# else