Browse Source

Add missing S_ISUID and S_ISGID constants

(cherry picked from commit 9feeb18b15b333c9855488853a14dd1cc4cd61a3)
Pierre Muller 2 years ago
parent
commit
7cb40dc7d0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      rtl/aix/ostypes.inc

+ 2 - 0
rtl/aix/ostypes.inc

@@ -184,6 +184,8 @@ CONST
 
 
     { mode_t possible values                                 }
+    S_ISUID = &4000;          { set user id on execution    }
+    S_ISGID = &2000;          { set group id on execution   }
     S_IRUSR = $100;           { Read permission for owner   }
     S_IWUSR = $080;           { Write permission for owner  }
     S_IXUSR = $040;           { Exec  permission for owner  }