diff options
author | David Mitchell <davem@iabyn.com> | 2010-06-04 21:28:20 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2010-06-04 21:29:30 +0100 |
commit | 6ca8229ddb2de12c1f8f877d70989420b70a8072 (patch) | |
tree | c8daf8cb5365eff472ec0bed98e7ad61a8bf3915 /gv.h | |
parent | 354b0578ec63c058cd73f018f484808b22cc8631 (diff) | |
download | perl-6ca8229ddb2de12c1f8f877d70989420b70a8072.tar.gz |
express DM_[GU]ID flags in terms of components
Diffstat (limited to 'gv.h')
-rw-r--r-- | gv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -168,13 +168,13 @@ Return the SV from the GV. # define Nullgv Null(GV*) #endif -#define DM_UID 0x003 #define DM_RUID 0x001 #define DM_EUID 0x002 +#define DM_UID (DM_RUID|DM_EUID) #define DM_ARRAY_ISA 0x004 -#define DM_GID 0x030 #define DM_RGID 0x010 #define DM_EGID 0x020 +#define DM_GID (DM_RGID|DM_EGID) #define DM_DELAY 0x100 /* |