Files
ResInsight/ThirdParty/Ert/cmake/Tests/test_mode_t.c
T

7 lines
119 B
C

#include <sys/stat.h>
int main(int argc, char ** argv) {
mode_t new_mode = S_IWGRP;
chmod( "/tmp" , new_mode );
}