diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-26 02:43:57 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-26 02:43:57 +0000 |
commit | 48602b09a2a561d79942c9ebaacc5b0ac8890ce0 (patch) | |
tree | acda12781f88419490ff2c1e77d9d58e94e5ec8a /vms | |
parent | 13901cb8afec7040a59edbf2dc197bff221ea179 (diff) | |
parent | a0ed51b321531af4b47cce24205ab9656f043f0f (diff) | |
download | perl-48602b09a2a561d79942c9ebaacc5b0ac8890ce0.tar.gz |
integrate utfperl
p4raw-id: //depot/perl@1660
Diffstat (limited to 'vms')
-rw-r--r-- | vms/vmsish.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vms/vmsish.h b/vms/vmsish.h index 228a054996..e74c7fbc2d 100644 --- a/vms/vmsish.h +++ b/vms/vmsish.h @@ -200,9 +200,9 @@ #define COMPLEX_STATUS 1 /* We track both "POSIX" and VMS values */ #define HINT_V_VMSISH 24 -#define HINT_M_VMSISH_STATUS 0x01000000 /* system, $? return VMS status */ -#define HINT_M_VMSISH_EXIT 0x02000000 /* exit(1) ==> SS$_NORMAL */ -#define HINT_M_VMSISH_TIME 0x04000000 /* times are local, not UTC */ +#define HINT_M_VMSISH_STATUS 0x20000000 /* system, $? return VMS status */ +#define HINT_M_VMSISH_EXIT 0x40000000 /* exit(1) ==> SS$_NORMAL */ +#define HINT_M_VMSISH_TIME 0x80000000 /* times are local, not UTC */ #define NATIVE_HINTS (PL_hints >> HINT_V_VMSISH) /* used in op.c */ #define TEST_VMSISH(h) (PL_curcop->op_private & ((h) >> HINT_V_VMSISH)) |