mirror of
https://github.com/OPM/ResInsight.git
synced 2026-09-03 20:53:13 -05:00
7 lines
119 B
C
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 );
|
|
}
|